.header {
    background: white;
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.mpwpb_add_update_tab{
    /*background: #3b82f6;*/
    color: white;
    border: none;
    padding: 5px 5px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
    display: flex;
    justify-content: end;
    gap:15px;
    align-items: center;
}

.add-staff-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}


.profile-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}
.profile-section h3 {
    color: #374151;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}
.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
    cursor: pointer;
}
.upload-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}
.btn-primary {
    background: #3b82f6;
    color:#6b7280;
    border-color: #3b82f6;
}
.btn-secondary {
    color: #6b7280;
}
.btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    background: white;
}

.mpwpb_input_height{
    min-height: 45px !important;
}

/* Container and spacing */
label.mpwpb_user_info {
    display: block;
    margin-bottom: 20px !important;
    font-weight: 600;
}

/* Label Icons and Text */
label.mpwpb_user_info span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.mpwpb_style table td{
    border: none !important;
    border-bottom: 1px solid var(--mpwpb_color_border) !important;
}
.mpwpb_style table th, .mpwpb_style table td {
    border: none !important;
    text-align: left !important;
}

/* Input field styling */
.formControl {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Input hover/focus */
.formControl:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

/* Select field styling */
select.mpwpb_staff_modify_holiday {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Select hover/focus */
select.mpwpb_staff_modify_holiday:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    outline: none;
}

.mpwpb_staff_image_upload{
    background-color: white;
    filter: alpha(opacity=100); /* for old IE */
    opacity: 1;
}

.mpwpb_staff_image_holder{
    width: 150px;
    height: 100px;
}

.mpwpb_staff_list .mpwpb_staff_image_holder .mpwpb_staff_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mpwpb_add_update_tab ._mpBtn{
    font-weight: normal;
}
.mpwpb_add_update_tab i{
    margin-right: 10px;
}
.mpwpb_add_update_tab .mpwpb_add_new_staff{
    background-color: var(--mpwpb_color_theme);
    color: #fff;
}