/* ========================================
   FREELANCER DASHBOARD - PREMIUM FIVERR THEME
   ======================================== */

/* ========================================
   1. STATS CARDS - PREMIUM DESIGN
   ======================================== */

.myJob-wrapper-single-balance {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E4E5E7;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 140px;
}

.myJob-wrapper-single-balance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DBF73 0%, #19A463 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.myJob-wrapper-single-balance:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 191, 115, 0.15);
    border-color: #1DBF73;
}

.myJob-wrapper-single-balance:hover::before {
    opacity: 1;
}

/* Wallet Balance Card - Special Gradient */
.myJob-wrapper-single-balance.total_balance {
    background: linear-gradient(135deg, #1DBF73 0%, #19A463 100%);
    border: none;
    color: #FFFFFF;
}

.myJob-wrapper-single-balance.total_balance .contract_single__balance-price,
.myJob-wrapper-single-balance.total_balance .myJob-wrapper-single-balance-para {
    color: #FFFFFF !important;
}

.myJob-wrapper-single-balance.total_balance::before {
    display: none;
}

.myJob-wrapper-single-balance.total_balance:hover {
    box-shadow: 0 12px 32px rgba(29, 191, 115, 0.3);
}

/* Stats Card Content */
.myJob-wrapper-single-balance-contents {
    position: relative;
    z-index: 1;
}

.myJob-wrapper-single-balance-price {
    margin-bottom: 8px;
}

.contract_single__balance-price {
    font-size: 32px;
    font-weight: 700;
    color: #222325;
    line-height: 1.2;
    margin: 0;
    font-family: 'Macan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.myJob-wrapper-single-balance-para {
    font-size: 14px;
    font-weight: 500;
    color: #62646A;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add Icons to Stats Cards */
.myJob-wrapper-single-balance-contents::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -10px;
    width: 60px;
    height: 60px;
    background: rgba(29, 191, 115, 0.08);
    border-radius: 50%;
    z-index: -1;
}

/* ========================================
   2. DASHBOARD HEADER ENHANCEMENTS
   ======================================== */

.single-profile-settings-header {
    padding: 24px 0;
    border-bottom: 2px solid #F7F8FA;
    margin-bottom: 24px;
}

.single-profile-settings-header-title {
    font-size: 24px;
    font-weight: 700;
    color: #222325;
    margin: 0;
    font-family: 'Macan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Profile Switcher - Premium Design */
.switcher select.btn-profile {
    background: #FFFFFF;
    border: 2px solid #E4E5E7;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #404145;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23404145' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.switcher select.btn-profile:hover {
    border-color: #1DBF73;
    background-color: #F7F8FA;
}

.switcher select.btn-profile:focus {
    outline: none;
    border-color: #1DBF73;
    box-shadow: 0 0 0 3px rgba(29, 191, 115, 0.1);
}

/* ========================================
   3. LATEST ORDERS TABLE - MODERN DESIGN
   ======================================== */

.custom_table.style-04 {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.custom_table.style-04 table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.custom_table.style-04 table thead {
    background: #F7F8FA;
}

.custom_table.style-04 table thead th {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #404145;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E4E5E7;
    text-align: left;
}

.custom_table.style-04 table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #F7F8FA;
}

.custom_table.style-04 table tbody tr:hover {
    background: #FAFBFC;
}

.custom_table.style-04 table tbody td {
    padding: 20px;
    font-size: 15px;
    color: #404145;
    vertical-align: middle;
}

/* Payment Status Badges */
.custom_table.style-04 table tbody td:nth-child(3) {
    font-weight: 600;
}

/* Action Buttons in Table */
.custom_table .btn-profile {
    background: #1DBF73;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.custom_table .btn-profile:hover {
    background: #19A463;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 191, 115, 0.3);
}

/* ========================================
   4. PROFILE SETTINGS WRAPPER
   ======================================== */

.profile-settings-wrapper {
    background: transparent;
}

.single-profile-settings {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #E4E5E7;
}

.single-profile-settings-inner {
    padding-top: 24px;
}

.profile-border-top {
    border-top: 2px solid #F7F8FA;
}

/* ========================================
   5. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1199px) {
    .contract_single__balance-price {
        font-size: 28px;
    }
    
    .single-profile-settings {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .contract_single__balance-price {
        font-size: 24px;
    }
    
    .myJob-wrapper-single-balance {
        min-height: 120px;
        padding: 20px;
    }
    
    .single-profile-settings {
        padding: 20px;
    }
    
    .custom_table.style-04 table {
        font-size: 13px;
    }
    
    .custom_table.style-04 table thead th,
    .custom_table.style-04 table tbody td {
        padding: 12px;
    }
}

/* ========================================
   6. LOADING & EMPTY STATES
   ======================================== */

.dashboard-loading {
    text-align: center;
    padding: 60px 20px;
}

.dashboard-loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #F7F8FA;
    border-top-color: #1DBF73;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.dashboard-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.dashboard-empty-state-icon {
    font-size: 64px;
    color: #DADBDD;
    margin-bottom: 16px;
}

.dashboard-empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: #404145;
    margin-bottom: 8px;
}

.dashboard-empty-state-text {
    font-size: 15px;
    color: #62646A;
}

/* ========================================
   7. STATUS BADGES
   ======================================== */

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge.bg-success {
    background: #E8F7F0 !important;
    color: #1DBF73 !important;
    border: 1px solid #1DBF73;
}

.badge.bg-warning {
    background: #FFF8E6 !important;
    color: #FFBE5B !important;
    border: 1px solid #FFBE5B;
}

.badge.bg-danger {
    background: #FFE8E8 !important;
    color: #FF6B6B !important;
    border: 1px solid #FF6B6B;
}

.badge.bg-light {
    background: #F7F8FA !important;
    color: #404145 !important;
    border: 1px solid #E4E5E7;
}

/* ========================================
   8. ENHANCED BUTTONS
   ======================================== */

.btn-profile.btn-bg-1 {
    background: #1DBF73;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
}

.btn-profile.btn-bg-1:hover {
    background: #19A463;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 191, 115, 0.3);
    color: #FFFFFF;
}

.btn-profile.btn-bg-1:active {
    transform: translateY(0);
}

/* ========================================
   9. SECTION HEADERS WITH ICONS
   ======================================== */

.single-profile-settings-header-flex {
    width: 100%;
}

.single-profile-settings-header-flex i {
    transition: transform 0.3s ease;
}

.single-profile-settings:hover .single-profile-settings-header-flex i {
    transform: scale(1.1);
}

/* ========================================
   10. TABLE ENHANCEMENTS
   ======================================== */

.custom_table.style-04 table tbody tr:last-child td {
    border-bottom: none;
}

.custom_table.style-04 table tbody td strong {
    font-weight: 700;
}

/* Hover effect for table rows */
.custom_table.style-04 table tbody tr {
    cursor: pointer;
}

.custom_table.style-04 table tbody tr:hover td {
    color: #222325;
}

/* ========================================
   11. DASHBOARD WELCOME BANNER (Optional)
   ======================================== */

.dashboard-welcome-banner {
    background: linear-gradient(135deg, #1DBF73 0%, #19A463 100%);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.dashboard-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.dashboard-welcome-banner h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.dashboard-welcome-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.dashboard-welcome-banner .btn-light {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dashboard-welcome-banner .btn-light:hover {
    background: #FFFFFF;
    color: #1DBF73;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dashboard-welcome-banner .fa-hand-wave {
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}

.welcome-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.welcome-stat i {
    font-size: 13px;
}

/* ========================================
   12. QUICK STATS IMPROVEMENTS
   ======================================== */

.myJob-wrapper-single-balance a {
    text-decoration: none;
    color: inherit;
}

.myJob-wrapper-single-balance a:hover .contract_single__balance-price {
    color: #1DBF73;
}

/* ========================================
   13. SMOOTH SCROLLING
   ======================================== */

.profile-settings-wrapper {
    scroll-behavior: smooth;
}

/* ========================================
   14. PRINT STYLES
   ======================================== */

@media print {
    .myJob-wrapper-single-balance {
        box-shadow: none;
        border: 1px solid #E4E5E7;
    }

    .btn-profile {
        display: none;
    }
}

/* ========================================
   15. ACCESSIBILITY IMPROVEMENTS
   ======================================== */

.btn-profile:focus,
.custom_table table tbody tr:focus {
    outline: 2px solid #1DBF73;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .myJob-wrapper-single-balance {
        border: 2px solid #222325;
    }

    .btn-profile.btn-bg-1 {
        border: 2px solid #1DBF73;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   16. MICRO-INTERACTIONS & ANIMATIONS
   ======================================== */

/* Pulse animation for new items */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.new-item {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer loading effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #F7F8FA 0%, #E4E5E7 50%, #F7F8FA 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Tooltip styles */
.tooltip-premium {
    position: relative;
    cursor: help;
}

.tooltip-premium::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #222325;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-premium:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Notification dot */
.notification-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #FF6B6B;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Progress bar */
.progress-bar-premium {
    height: 8px;
    background: #F7F8FA;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar-premium-fill {
    height: 100%;
    background: linear-gradient(90deg, #1DBF73 0%, #19A463 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* ========================================
   17. ENHANCED CARD INTERACTIONS
   ======================================== */

.myJob-wrapper-single-balance {
    cursor: pointer;
}

.myJob-wrapper-single-balance:active {
    transform: translateY(-2px) scale(0.98);
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(29, 191, 115, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* ========================================
   18. GRADIENT OVERLAYS
   ======================================== */

.gradient-overlay-green {
    position: relative;
}

.gradient-overlay-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 191, 115, 0.1) 0%, rgba(25, 164, 99, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-overlay-green:hover::before {
    opacity: 1;
}

/* ========================================
   19. SKELETON LOADING SCREENS
   ======================================== */

.skeleton {
    background: linear-gradient(90deg, #F7F8FA 25%, #E4E5E7 50%, #F7F8FA 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-card {
    height: 140px;
    margin-bottom: 20px;
}

/* ========================================
   20. SCROLL ANIMATIONS
   ======================================== */

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   21. CUSTOM SCROLLBAR
   ======================================== */

.profile-settings-wrapper::-webkit-scrollbar {
    width: 8px;
}

.profile-settings-wrapper::-webkit-scrollbar-track {
    background: #F7F8FA;
    border-radius: 4px;
}

.profile-settings-wrapper::-webkit-scrollbar-thumb {
    background: #DADBDD;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.profile-settings-wrapper::-webkit-scrollbar-thumb:hover {
    background: #1DBF73;
}

/* ========================================
   22. QUICK ACTION CARDS
   ======================================== */

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border: 2px solid #F7F8FA;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.quick-action-card:hover {
    border-color: #1DBF73;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 191, 115, 0.15);
}

.quick-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-action-icon i {
    font-size: 24px;
}

.quick-action-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222325;
    margin: 0 0 4px 0;
}

.quick-action-content p {
    font-size: 13px;
    color: #62646A;
    margin: 0;
}

/* ========================================
   23. ADVANCED RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .dashboard-welcome-banner h2 {
        font-size: 24px;
    }

    .dashboard-welcome-banner p {
        font-size: 14px;
    }

    .single-profile-settings {
        padding: 28px;
    }

    .contract_single__balance-price {
        font-size: 28px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .dashboard-welcome-banner {
        padding: 24px;
    }

    .dashboard-welcome-banner h2 {
        font-size: 22px;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .single-profile-settings {
        padding: 24px;
    }

    .custom_table.style-04 table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .dashboard-welcome-banner {
        padding: 20px;
        text-align: center;
    }

    .dashboard-welcome-banner h2 {
        font-size: 20px;
    }

    .dashboard-welcome-banner p {
        font-size: 14px;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .myJob-wrapper-single-balance {
        padding: 16px;
        min-height: 110px;
    }

    .contract_single__balance-price {
        font-size: 22px;
    }

    .myJob-wrapper-single-balance-para {
        font-size: 12px;
    }

    .stat-card-icon {
        font-size: 24px;
        right: 12px;
        top: 12px;
    }

    .single-profile-settings {
        padding: 20px;
    }

    .single-profile-settings-header-title {
        font-size: 20px;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .dashboard-welcome-banner {
        padding: 16px;
        text-align: center;
    }

    .dashboard-welcome-banner h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .dashboard-welcome-banner p {
        font-size: 13px;
    }

    .dashboard-welcome-banner .btn-light {
        width: 100%;
        margin-top: 12px;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .myJob-wrapper-single-balance {
        padding: 16px;
        min-height: 100px;
    }

    .contract_single__balance-price {
        font-size: 20px;
    }

    .myJob-wrapper-single-balance-para {
        font-size: 11px;
    }

    .stat-card-icon {
        font-size: 20px;
        right: 10px;
        top: 10px;
    }

    .single-profile-settings {
        padding: 16px;
        margin-bottom: 16px;
    }

    .single-profile-settings-header {
        padding: 16px 0;
    }

    .single-profile-settings-header-title {
        font-size: 18px;
    }

    .single-profile-settings-header-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .btn-profile.btn-bg-1 {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    /* Mobile-optimized table */
    .custom_table.style-04 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .custom_table.style-04 table {
        min-width: 600px;
        font-size: 12px;
    }

    .custom_table.style-04 table thead th,
    .custom_table.style-04 table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    /* Stack elements vertically on very small screens */
    .switcher select.btn-profile {
        width: 100%;
    }
}

/* Extra Small Devices (< 375px) */
@media (max-width: 374px) {
    .dashboard-welcome-banner h2 {
        font-size: 16px;
    }

    .contract_single__balance-price {
        font-size: 18px;
    }

    .single-profile-settings-header-title {
        font-size: 16px;
    }

    .custom_table.style-04 table {
        font-size: 11px;
    }
}

/* ========================================
   23. TOUCH-FRIENDLY INTERACTIONS
   ======================================== */

@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile */
    .btn-profile.btn-bg-1 {
        min-height: 44px;
        padding: 12px 20px;
    }

    .myJob-wrapper-single-balance {
        min-height: 120px;
    }

    .custom_table.style-04 table tbody tr {
        cursor: default;
    }

    /* Remove hover effects on touch devices */
    .myJob-wrapper-single-balance:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .btn-profile.btn-bg-1:hover {
        transform: none;
    }

    /* Add active states for touch */
    .myJob-wrapper-single-balance:active {
        transform: scale(0.98);
    }

    .btn-profile.btn-bg-1:active {
        transform: scale(0.96);
    }
}

/* ========================================
   24. LANDSCAPE ORIENTATION
   ======================================== */

@media (max-width: 767px) and (orientation: landscape) {
    .dashboard-welcome-banner {
        padding: 16px 20px;
    }

    .dashboard-welcome-banner h2 {
        font-size: 18px;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .myJob-wrapper-single-balance {
        min-height: 90px;
    }
}

/* ========================================
   25. DARK MODE SUPPORT (Optional)
   ======================================== */

@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed in future */
    /* Currently maintaining light theme for consistency */
}

/* ========================================
   26. PERFORMANCE METRICS CARDS
   ======================================== */

.performance-metric-card {
    background: #FFFFFF;
    border: 1px solid #E4E5E7;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 191, 115, 0.15);
    border-color: #1DBF73;
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 24px;
}

.metric-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #222325;
    margin: 0 0 4px 0;
}

.metric-content p {
    font-size: 14px;
    color: #62646A;
    margin: 0;
    font-weight: 500;
}

/* ========================================
   27. EARNINGS OVERVIEW CARDS
   ======================================== */

.earnings-card {
    background: #FFFFFF;
    border: 1px solid #E4E5E7;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.earnings-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 191, 115, 0.15);
    border-color: #1DBF73;
}

.earnings-card.highlight {
    background: linear-gradient(135deg, #1DBF73 0%, #19A463 100%);
    border-color: #1DBF73;
    color: #FFFFFF;
}

.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.earnings-label {
    font-size: 14px;
    font-weight: 600;
    color: #62646A;
}

.earnings-card.highlight .earnings-label {
    color: rgba(255, 255, 255, 0.9);
}

.earnings-header i {
    font-size: 20px;
}

.earnings-amount {
    font-size: 32px;
    font-weight: 700;
    color: #222325;
    margin: 0 0 12px 0;
}

.earnings-card.highlight .earnings-amount {
    color: #FFFFFF;
}

.earnings-change {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.earnings-change.positive {
    color: #1DBF73;
}

.earnings-card.highlight .earnings-change.positive {
    color: rgba(255, 255, 255, 0.9);
}

.earnings-change.negative {
    color: #FF6B6B;
}

.earnings-change.neutral {
    color: #95979D;
}

.earnings-change i {
    font-size: 12px;
}

.earnings-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.earnings-info i {
    font-size: 14px;
}

