
.author-kit_page_author-kit-add-profile >{
padding: 0px;
margin: 0px;
box-sizing: border-box;
} 

.container {
    max-width: 100%;
    padding:  100px  auto;
    background-color: white;
     
    overflow: hidden;
    padding-bottom: 300px;
    box-sizing: border-box;
}

  /** this resets the wp admin padding left and bottom issue **/
.auto-fold #wpcontent{
    padding-left: 0px;     
}
.header {
    padding: 1.5rem;
    text-align: center;
}
.header  #ak-add-new-form-heading{
    margin-bottom: 0px;
    display: block;
    padding: 0px;
    margin-bottom: -19px;
}
.header > p {
    color: #555;
}
.header h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0 0 1rem;
}

.form {
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    padding: 20px 30px;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
       width: 500px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.avatar-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: #e5e7eb;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar:hover .overlay {
    opacity: 1;
}

.avatar .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: white;
    font-size: 0.875rem;
    transition: opacity 0.3s;
}

.btn-remove {
    display: inline-block;
    margin-top: 0.5rem;
    color: #dc2626;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-remove:hover {
    color: #b91c1c;
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2563eb;
}

.divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #d1d5db;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    position: relative;
    background: white;
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0 0.5rem;
}


.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: #4b5563;
}
.wp-admin select{
    height: 40px;
    padding: 10px 20px;
    
}
/* Styling for the checkbox group container */
#send-email-group {
    display: flex; /* Enables Flexbox layout */
    align-items: center; /* Vertically center the checkbox and the paragraph */
    gap: 10px; /* Space between the checkbox and paragraph */
    margin-bottom: 30px;
}

/* Optional: Styling for the checkbox */
#send-email-group input[type="checkbox"] {
    margin: 0; /* Remove default margin */
}

/* Optional: Styling for the paragraph */
#send-email-group p {
    margin: 0; /* Remove default margin */
    font-size: 14px; /* Adjust font size if necessary */
}
/* Style the parent form group */
.form-group {
    width: 100%; /* Make the form group width 100% */
    margin-bottom: 20px; /* Add spacing between form groups */
}

/* Style the select input */
#author-kit-select-role select {
    width: 100%; /* Full width */
    padding: 0.5rem;   
    font-size: 0.875rem;
    max-width: 500px;
  border: 1px solid #ccc; /* Border color */
    border-radius: 5px; /* Rounded corners */
    background-color: #fff; /* White background */
    cursor: pointer; /* Pointer cursor */
    transition: all 0.3s ease; /* Smooth transition for hover/focus effects */
    line-height: 1.5;
}

/* Hover and focus states for the select */
#author-kit-select-role select:hover,
#author-kit-select-role select:focus {
    border-color: #0073aa; /* Change border color on hover/focus */
    outline: none; /* Remove outline on focus */
    background-color: #f9f9f9; /* Slight background change on hover/focus */
}

/* Style the options */
#author-kit-select-role option {
    padding: 10px; /* Add padding to the option elements */
    background-color: #fff; /* Default background color for options */
    color: #333; /* Default text color */
}

/* Hover state for option */
#author-kit-select-role select option:hover {
    background-color: #0073aa; /* Background color on hover */
    color: #fff; /* White text on hover */
}

div.error {
    background: #fff;
    border: 1px solid ghostwhite;
    border-left: 4px solid red;
    margin: 10px 0px;
    padding: 4px 12px;
    border-radius: 4px;
    font-style: italic;
}