/* style2.css - Modern Profile Page Styles */

/* Custom styles for profile page */
.profile-header {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    padding: 30px 0;
    margin-bottom: 30px;
    color: white;
}

.profile-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.profile-card {
    background: #4f432d !important;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.profile-image-container {
    text-align: center;
    margin-bottom: 25px;
}

.profilemt{
    margin-top: 50px !important;
}
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #b29359;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 177, 30, 0.4);
}

.file-upload-wrapper {
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-upload-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-wrapper .btn {
    background: #be995b !important;
    color: #000 !important;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.3);
    transition: all 0.3s ease;
}

.file-upload-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 177, 30, 0.4);
}

.photo-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 10px;
    font-weight: 600;
}

.photo-status.verified {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #b1dfbb;
}

.photo-status.pending {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 1px solid #ffecb5;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

/* Beautiful Input Fields with Attractive Borders */
.input-field {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Source Sans Pro', sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    border-color: #b29359;
    box-shadow: 0 0 0 3px rgba(33, 177, 30, 0.15);
    transform: translateY(-2px);
}

.input-field input:hover:not(:focus):not([readonly]),
.input-field select:hover:not(:focus),
.input-field textarea:hover:not(:focus) {
    border-color: #999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.input-field input[readonly] {
    background: #b29359 !important;
    color: #000 !important;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.input-field input[readonly]:hover {
    border-color: #dee2e6;
    box-shadow: none;
    transform: none;
}

/* Special border effects on hover */
.input-field input:not([readonly]) {
    border-image: #b29359;
    border-image-slice: 1;
    border-width: 2px;
 background: #b29359 !important;
}

.input-field input:not([readonly]):hover {
    border-image: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    border-image-slice: 1;
    animation: border-glow 2s infinite;
}

@keyframes border-glow {
    0% {
        border-color: #b29359;
        box-shadow: 0 0 5px rgba(33, 177, 30, 0.3);
    }
    50% {
        border-color: #1a8817;
        box-shadow: 0 0 10px rgba(33, 177, 30, 0.5);
    }
    100% {
        border-color: #b29359;
        box-shadow: 0 0 5px rgba(33, 177, 30, 0.3);
    }
}

/* Floating label effect */
.input-field.floating-label {
    position: relative;
}

.input-field.floating-label label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.input-field.floating-label input:focus + label,
.input-field.floating-label input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 13px;
    color: #b29359;
    font-weight: 600;
}

/* Password field with eye icon */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #21B11E;
}

/* Beautiful Select Dropdown */
.select-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2321B11E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* File upload button */
.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-label {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.3);
}

.file-input-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 177, 30, 0.4);
}

.current-position-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #21B11E;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.current-position-card h3 {
    color: #21B11E;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    border-bottom-color: #21B11E;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #be995b;
    min-width: 150px;
    display: inline-block;
    font-size: 15px;
}

.info-value {
    color: #333;
    font-weight: 500;
}

.action-buttons {
    margin-top: 30px;
}

.btn-custom {
      background-color: #4f432d !important;
    color: #be995b !important;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}





.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 177, 30, 0.4);
    color: white;
}

.btn-custom-outline {
    background: transparent;
    color: #4f432d;
        border: 2px solid #4f432d;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-custom-outline:hover {
    background: #21B11E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.3);
}

.print-options {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(33, 177, 30, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.print-options h4 {
    color: #21B11E;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-print {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    margin: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(33, 177, 30, 0.3);
}

.btn-print:hover {
    background: linear-gradient(135deg, #1a8817 0%, #136c13 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.4);
}

/* Form validation states */
.input-field.valid input {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.input-field.invalid input {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Focus animation */
@keyframes input-focus {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 177, 30, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 177, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 177, 30, 0);
    }
}

.input-field input:focus {
    animation: input-focus 1.5s ease;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success animation */
.success-check {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        padding: 20px 0;
    }
    
    .profile-header h1 {
        font-size: 22px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .input-field input,
    .input-field select,
    .input-field textarea {
        padding: 12px 15px;
        font-size: 15px;
    background: #b29359;

    }
    
    .info-label {
        min-width: 120px;
        font-size: 14px;
    }
    
    .btn-custom,
    .btn-custom-outline {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .btn-print {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Animation for SweetAlert */
.animate__animated {
    animation-duration: 0.5s;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Custom alert box styling */
.custom-alert {
    border-radius: 10px;
    border-left: 5px solid #21B11E;
}

.custom-alert .fa-info-circle {
    color: #21B11E;
    margin-right: 10px;
}

/* List group styling for quick links */
.quick-links-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-links-group .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
}

.quick-links-group .list-group-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #21B11E;
    transform: translateX(5px);
}

.quick-links-group .list-group-item:last-child {
    border-bottom: none;
}

.quick-links-group .list-group-item i {
    color: #21B11E;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Section separator */
.section-separator {
    color: #21B11E;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hover effects for input fields */
.input-field-hover {
    transition: all 0.3s ease;
}

.input-field-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.1);
}

/* Password strength indicator */
.strength-indicator {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 600;
}

.strength-very-weak { color: #dc3545; }
.strength-weak { color: #ffc107; }
.strength-fair { color: #ffc107; }
.strength-good { color: #28a745; }
.strength-strong { color: #28a745; }



/* style2.css - My Approvals Page Styles */

/* My Approvals Page Styles */
.approvals-header {
    padding: 20px 0;
    margin-bottom: 0px;
    margin-top: 30px;
    text-align: center;
}

.approvals-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #ae1162;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approvals-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 30px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.approvals-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
}

.approvals-container .btn-back {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.approvals-container .btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 177, 30, 0.4);
}

.approvals-timeline {
    position: relative;
    margin: 40px 0;
}

.approvals-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #21B11E 0%, #1a8817 100%);
    border-radius: 3px;
}

.approval-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.approval-step:nth-child(1) { animation-delay: 0.1s; }
.approval-step:nth-child(2) { animation-delay: 0.2s; }
.approval-step:nth-child(3) { animation-delay: 0.3s; }
.approval-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.3);
    position: relative;
    z-index: 2;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #21B11E;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.status-icon {
    margin-left: 15px;
    font-size: 20px;
}

.status-approved {
    color: #28a745;
}

.status-pending {
    color: #ffc107;
}

.status-rejected {
    color: #dc3545;
}

.step-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-note {
    background: rgba(255,255,255,0.8);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
    border-left: 3px solid #21B11E;
    margin-top: 10px;
}

.step-note strong {
    color: #333;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-approved {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #b1dfbb;
}

.badge-pending {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border: 1px solid #ffecb5;
}

.badge-rejected {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    border-radius: 5px;
    width: 0;
    transition: width 1s ease;
}

/* Checkmark and Cross Icons */
.icon-checkmark {
    color: #28a745;
    font-size: 24px;
    margin-right: 10px;
}

.icon-cross {
    color: #dc3545;
    font-size: 24px;
    margin-right: 10px;
}

/* Status Cards */
.status-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.status-card.approved {
    border-left: 5px solid #28a745;
}

.status-card.pending {
    border-left: 5px solid #ffc107;
}

.status-card.rejected {
    border-left: 5px solid #dc3545;
}

.status-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-card-details {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design for Approvals */
@media (max-width: 768px) {
    .approvals-container {
        padding: 25px 20px;
        margin: 20px 10px;
    }
    
    .approvals-timeline:before {
        left: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .step-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .status-icon {
        margin-left: 10px;
        font-size: 18px;
    }
    
    .approvals-container .btn-back {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        display: inline-block;
    }
}

/* Animation for progress fill */
@keyframes progressFill {
    from { width: 0; }
    to { width: var(--progress-width); }
}

.progress-fill {
    animation: progressFill 1.5s ease-out forwards;
}

/* Tooltip for status icons */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: -5px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Loading animation for pending steps */
.pending-step {
    position: relative;
}

.pending-step:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #21B11E, #1a8817, #21B11E);
    border-radius: 12px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Summary Section */
.approvals-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.summary-title {
    color: #21B11E;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #21B11E;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Print Button */
.btn-print-approvals {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.3);
}

.btn-print-approvals:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 177, 30, 0.4);
}

/* Animated Underline Header for My Work Update Page */
.approvals-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px 0;
    margin-bottom: 0;
    border-bottom: 3px solid #21B11E;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.approvals-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #21B11E 0%, #1a8817 50%, #21B11E 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.approvals-header:hover::before {
    transform: scaleX(1);
}

.approvals-header h1 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
}

.approvals-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #21B11E, #1a8817);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(33, 177, 30, 0.3);
}

.approvals-header:hover h1::after {
    width: 100%;
}

/* Optional: Add a second underline effect for more depth */
.approvals-header h1::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(33, 177, 30, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.approvals-header:hover h1::before {
    transform: scaleX(1);
    transform-origin: left;
}

.approvals-header p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.approvals-header p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #21B11E;
    transition: transform 0.3s ease;
}

.approvals-header:hover p {
    padding-left: 40px;
}

.approvals-header:hover p::before {
    transform: translateX(5px);
}

/* Icon animation */
.approvals-header h1 i {
    color: #21B11E;
    margin-right: 15px;
    transition: all 0.3s ease;
    transform: scale(1);
}

.approvals-header:hover h1 i {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(33, 177, 30, 0.4);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1.2);
        text-shadow: 0 0 15px rgba(33, 177, 30, 0.4);
    }
    50% {
        transform: scale(1.3);
        text-shadow: 0 0 25px rgba(33, 177, 30, 0.6);
    }
    100% {
        transform: scale(1.2);
        text-shadow: 0 0 15px rgba(33, 177, 30, 0.4);
    }
}

/* Optional: Add ripple effect on click */
.approvals-header h1 {
    cursor: pointer;
}

.approvals-header h1:active {
    animation: ripple 0.6s ease;
}

@keyframes ripple {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .approvals-header {
        padding: 30px 0;
    }
    
    .approvals-header h1 {
        font-size: 28px;
    }
    
    .approvals-header p {
        font-size: 1.1rem;
    }
}

/* Additional My Work Update Page Styles */
.jobs-content.canditate {
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.jobs-content.canditate h1 {
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.jobs-content.canditate h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #21B11E, #1a8817);
}

/* Form Styling for My Work Update */
.form-horizontal.password {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.form-horizontal.password fieldset {
    border: none;
    padding: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    color: #be995b !important;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    /* padding: 15px; */
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: #21B11E;
    box-shadow: 0 0 0 3px rgba(33, 177, 30, 0.15);
    transform: translateY(-2px);
}

.form-control:hover:not(:focus) {
    border-color: #999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2321B11E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.button {
    text-align: center;
    margin-top: 30px;
}

.btn.btn-primary.btnus {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 177, 30, 0.3);
}

.btn.btn-primary.btnus:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 177, 30, 0.4);
}

/* Table Styling for Work Submit List */
.table.table-striped {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.table.table-striped thead {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
}

.table.table-striped thead th {
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    border: none;
}

.table.table-striped tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.table.table-striped tbody tr:nth-child(even) {
    background: white;
}

.table.table-striped tbody tr:hover {
    background: linear-gradient(135deg, rgba(33, 177, 30, 0.1) 0%, rgba(26, 136, 23, 0.05) 100%);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.table.table-striped tbody td {
    padding: 12px 15px;
    text-align: center;
    color: #333;
    border: none;
    font-size: 14px;
}



a[href="profile.php"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.4);
    text-decoration: none;
    color: white;
}

/* Work Instructions Styling */
#job p {
    line-height: 1.8;
    color: #be995b;
    margin-bottom: 15px;
    font-size: 16px;
}

#job hr {
    border: none;
    height: 2px;
    background: #be995b;
    margin: 30px 0;
}

/* Project Form Section Animation */
#div1 {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for My Work Update Page */
@media (max-width: 768px) {
    .form-horizontal.password {
        padding: 20px;
    }
    
    .jobs-content.canditate h1 {
        font-size: 24px;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
    
    .table.table-striped {
        font-size: 14px;
    }
    
    .btn.btn-primary.btnus {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Custom Alert Styling */
.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-left: 5px solid #2196F3;
    color: #0d47a1;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    font-size: 15px;
}

/* Section Titles */
h3[style*="text-align:center"] {
    color: #1a237e;
    font-weight: 700;
    margin: 30px 0;
    position: relative;
    padding-bottom: 15px;
}

h3[style*="text-align:center"]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #21B11E, #1a8817);
}

/* Image Styling */
img[style*="width:100%"] {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 20px 0;
}


/* ==========================================================================
   MY WORK UPDATE PAGE STYLES
   ========================================================================== */

/* My Work Update Header with Animated Underline */
.mywork-update-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 50px 0 40px;
    margin-bottom: 0;
    border-bottom: 3px solid #21B11E;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mywork-update-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #21B11E 0%, #1a8817 50%, #21B11E 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.mywork-update-header:hover::before {
    transform: scaleX(1);
}

.mywork-update-header h1 {
    color: #1a237e;
    font-family: 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mywork-update-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #21B11E, #1a8817);
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(33, 177, 30, 0.4);
    border-radius: 2px;
}

.mywork-update-header:hover h1::after {
    width: 280px;
}

/* Second underline effect */
.mywork-update-header h1::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(33, 177, 30, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mywork-update-header:hover h1::before {
    transform: scaleX(1);
    transform-origin: left;
}

.mywork-update-header p {
    color: #666;
    font-size: 1.3rem;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    padding-left: 40px;
    padding-right: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mywork-update-header p::before {
    content: '📋';
    position: absolute;
    left: 0;
    color: #21B11E;
    transition: transform 0.3s ease;
    font-size: 1.4rem;
}

.mywork-update-header:hover p {
    padding-left: 45px;
    color: #444;
}

.mywork-update-header:hover p::before {
    transform: translateX(5px) scale(1.1);
}

/* Icon animation */
.mywork-update-header h1 i {
    color: #21B11E;
    margin-right: 20px;
    transition: all 0.3s ease;
    transform: scale(1);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.2);
}

.mywork-update-header:hover h1 i {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(33, 177, 30, 0.5);
    animation: workIconPulse 2s infinite;
    box-shadow: 0 6px 20px rgba(33, 177, 30, 0.3);
}

@keyframes workIconPulse {
    0% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(33, 177, 30, 0.4);
    }
    50% {
        transform: scale(1.2);
        text-shadow: 0 0 25px rgba(33, 177, 30, 0.7);
    }
    100% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(33, 177, 30, 0.4);
    }
}

/* Main Content Container */
.mywork-main-container {
    background: #f8f9fa;
    padding: 40px 0;
    min-height: 70vh;
}

/* Form Container */
.mywork-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 30px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 177, 30, 0.1);
}

.mywork-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
}

/* Back Button Styling */
.back-to-profile-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    font-size: 15px;
    border: 2px solid transparent;
}

.back-to-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.back-to-profile-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

/* Form Styling */
.mywork-form {
    margin-top: 20px;
}

.form-section-title {
    color: #1a237e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title i {
    color: #21B11E;
    background: rgba(33, 177, 30, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    /*flex: 1;*/
    /*min-width: 300px;*/
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    position: relative;
    padding-left: 8px;
}



/* Form Controls */
.form-control {
    width: 100%;
    padding: 0px 10px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Source Sans Pro', sans-serif;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.form-control:focus {
    border-color: #21B11E;
    box-shadow: 0 0 0 3px rgba(33, 177, 30, 0.15);
    transform: translateY(-2px);
}

.form-control:hover:not(:focus) {
    border-color: #aaa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2321B11E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Project-specific fields container */
.project-fields-container {
    background: linear-gradient(135deg, rgba(33, 177, 30, 0.05) 0%, rgba(26, 136, 23, 0.03) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px dashed rgba(33, 177, 30, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
}

.project-fields-container.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 1000px;
    }
}

.project-fields-container h4 {
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(33, 177, 30, 0.2);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-fields-container h4 i {
    color: #21B11E;
}

/* Submit Button */
.submit-button-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.submit-work-btn {
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(33, 177, 30, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.submit-work-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.submit-work-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(33, 177, 30, 0.4);
}

.submit-work-btn:hover::before {
    left: 100%;
}

.submit-work-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 177, 30, 0.3);
}

.submit-work-btn i {
    font-size: 20px;
}

/* Work List Section */
.work-list-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.work-list-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.work-list-title {
    color: #1a237e;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.work-list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #21B11E, #1a8817);
    border-radius: 2px;
}

/* Work List Table */
.work-list-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.work-list-table thead {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.work-list-table thead th {
    color: white;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.work-list-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.work-list-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.work-list-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(33, 177, 30, 0.1) 0%, rgba(26, 136, 23, 0.05) 100%);
    transform: translateX(5px);
}

.work-list-table tbody td {
    padding: 18px 20px;
    text-align: center;
    color: #333;
    border: none;
    font-size: 15px;
    font-weight: 500;
}

.work-list-table tbody td:first-child {
    font-weight: 600;
    color: #1a237e;
}

/* Instructions Section */
.work-instructions-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1000px;
    border: 2px solid rgba(33, 177, 30, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.instructions-title {
    color: #1a237e;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.instructions-title i {
    color: #21B11E;
    background: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list li {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #21B11E;
    transition: all 0.3s ease;
    counter-increment: step-counter;
    position: relative;
    padding-left: 70px;
}

.instructions-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.instructions-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #21B11E 0%, #1a8817 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(33, 177, 30, 0.3);
}

.instructions-list p {
    margin: 0;
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

/* Bottom Back Button */
.bottom-back-container {
    text-align: center;
    margin: 40px 0;
}

.bottom-back-btn {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    border: 2px solid transparent;
}

.bottom-back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Work Image Display */
.work-image-container {
    text-align: center;
    margin: 30px 0;
}

.work-image-container img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: all 0.3s ease;
}

.work-image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .mywork-update-header h1 {
        font-size: 30px;
    }
    
    .mywork-update-header:hover h1::after {
        width: 220px;
    }
    
    .mywork-form-wrapper,
    .work-list-container,
    .work-instructions-container {
        padding: 30px 25px;
        margin: 25px 15px;
    }
    
    .form-row {
        gap: 20px;
    }
    
    .form-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .mywork-update-header {
        padding: 40px 0 30px;
    }
    
    .mywork-update-header h1 {
        font-size: 26px;
        padding-bottom: 12px;
    }
    
    .mywork-update-header p {
        font-size: 1.1rem;
        padding-left: 35px;
    }
    
    .mywork-update-header:hover p {
        padding-left: 40px;
    }
    
    .mywork-update-header:hover h1::after {
        width: 180px;
    }
    
    .mywork-update-header h1 i {
        margin-right: 15px;
        padding: 10px;
    }
    
    .back-to-profile-btn {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        width: auto;
        display: inline-block;
    }
    
    .form-section-title {
        font-size: 20px;
    }
    
    .submit-work-btn {
        padding: 16px 40px;
        font-size: 16px;
        min-width: 200px;
    }
    
    .work-list-title,
    .instructions-title {
        font-size: 22px;
    }
    
    .work-list-table thead th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .work-list-table tbody td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .instructions-list li {
        padding: 20px 20px 20px 60px;
    }
    
    .instructions-list li::before {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .bottom-back-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .mywork-update-header h1 {
        font-size: 22px;
    }
    
    .mywork-update-header:hover h1::after {
        width: 150px;
    }
    
    .mywork-form-wrapper,
    .work-list-container,
    .work-instructions-container {
        padding: 25px 20px;
        margin: 20px 10px;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .submit-work-btn {
        padding: 15px 30px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .work-list-table {
        font-size: 14px;
    }
    
    .work-list-table thead th,
    .work-list-table tbody td {
        padding: 12px 8px;
    }
    
    .instructions-list li {
        padding: 18px 18px 18px 55px;
        font-size: 14px;
    }
}

/* Animation for form appearance */
@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mywork-form-wrapper {
    animation: formAppear 0.6s ease-out;
}

/* Success Message Animation */
.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 5px solid #28a745;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .mywork-update-header,
    .back-to-profile-btn,
    .submit-work-btn,
    .bottom-back-btn {
        display: none !important;
    }
    
    .mywork-form-wrapper,
    .work-list-container,
    .work-instructions-container {
        box-shadow: none !important;
        border: 2px solid #000 !important;
        page-break-inside: avoid;
    }
    
    body {
        -webkit-print-color-adjust: exact;
    }
}



.multi-step-progress-container {
    background: #4f432d !important;

}





.progress-bar-step.active .step-circle {
    background: white !important;
    border-color: #be995b !important;
    color: #be995b !important;
    box-shadow: 0 0 0 5px rgb(190 153 91 / 20%) !important;
}


.progress-bar-step.active .step-label{
    color: #be995b !important;

}



.section-title::before {
    background: #4f432d !important;

}


.section-title::after{
background: #4f432d !important;
}

.progress-bar-step.completed .step-circle{
    background: #be995b !important;
    color: #4f432d !important;

}


.progress-bar-step.completed .step-label{
color: #be995b !important;
}

.progress-line.completed {
background: #be995b !important;
}

.form-control[readonly] {
    background-color: #be995b !important;
    cursor: not-allowed;
color:#000 !important;
}

textarea.form-control {
background-color: #be995b !important;
color:#000 !important;

}

.form-control{
color:#000 !important;
background-color: #be995b !important;
}


.section-separator{
background: #b29359 !important;

}

.filters-section {
    background: #4f432d !important;
}

.filter-btn{
background-color:#be995b !important;
color:#4f432d !important;
}

.search-box input {

    background: #be995b !important;
color:#4f432d !important;
}


.text-muted{
color: #be995b !important;
}

.summary-card{
background: #4f432d !important;
border-left: 4px solid #be995b !important;
}

.summary-card h3,.summary-card p{
color:#be995b !important;
}


.btn-outline-secondary i,.btn-outline-secondary {
color: #be995b !important;

}
.applications-table-container,.slips-table-container{
background-color:#4f432d !important;

}

.applications-table th,.scheme-investment,.btn-view,.btn-download,.pdf-badge,.visibility-visible,.slips-table th,.btn-view {

    background: #be995b !important;
    color: #4f432d!important;
border:none !important;
}


.applications-table td {

border:none !important;
}

.file-info,.stamp-info,.generated-by,.affidavit-number,.investment-amount,.pdf-icon,.balance-amount,.status-badge,.slips-table td,.app-number,.paid-amount{
 color: #be995b!important;
}




.applications-table {
 color: #4f432d!important;

}


.welcome-banner{
background:#4f432d !important;
    border: 2px solid #be995b!important;
color:#be995b !important;
}

.welcome-banner,.welcome-banner h2,.welcome-banner p i,.card-header,.card-body,.filter-section,.table-header {
color:#be995b !important;
background:#4f432d !important;
}

.form-control::placeholder,
.form-select::placeholder {
  color: #000 !important;
}

/* Chrome, Safari */
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
  color: #000 !important;
}

/* Firefox */
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
  color: #000 !important;
}

/* IE */
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
  color: #000 !important;
}


.form-control, .form-select {
color:#000 !important;
background:#be995b !important;
}

.file-upload{
margin-bottom: 13px !important;
background:#4f432d !important;
}

input[type="file"] {
color:#be995b !important;


}
input[type="file"] {

  color: #000;

  padding: 6px;
}

.table-responsive,.user-info,.table thead th,.btn-reset,.btn-filter{
background: #be995b !important;
color:#4f432d !important;
border:none !important;
}

.table > tbody > tr > td{
border-top:none !important;
text-align: center !important;
}

.filter-item label{
    color: #be995b !important;
}


.suggestion-message,.form-label i {

background-color:#4f432d !important;
color:#be995b !important;
}







.notice-wrapper2{
background-color:#b29359 !important;
}

.page-header{
background-color:#4f432d !important;
}


.messages-area::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url('chat-icons.svg') !important;
  background-repeat: repeat !important;
  background-size: 100px !important;
  opacity: 0.07 !important;
  z-index: -1 !important;
}












@media (max-width: 576px) {
 .table-container{
background: #be995b !important;
}

.category_width{

margin:0px !important;
padding:0px !important;
}

}









