     .user-dashboard {
        min-height: 100vh;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 100px 20px 20px;
        overflow-y: auto;
    }

    /* Custom Scrollbar */
    .user-dashboard::-webkit-scrollbar {
        width: 10px;
    }

    .user-dashboard::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .user-dashboard::-webkit-scrollbar-thumb {
        background: rgba(1, 255, 167, 0.5);
        border-radius: 10px;
    }

    .user-dashboard::-webkit-scrollbar-thumb:hover {
        background: rgba(1, 255, 167, 0.7);
    }

    .dashboard-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    /* Sidebar */
    .dashboard-sidebar {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        height: fit-content;
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
    }

    .sidebar-header {
        padding: 0 25px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }

    .sidebar-avatar {
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 32px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(1, 255, 167, 0.4);
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .avatar-circle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(1, 255, 167, 0.5);
    }

    .avatar-initial {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .avatar-circle i {
        font-size: 36px;
    }

    .sidebar-header h2 {
        margin: 10px 0 0 0;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .sidebar-back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        color: rgba(0, 0, 0, 0.7);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .sidebar-back-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #000;
    }

    .sidebar-back-btn i {
        font-size: 14px;
    }

    .sidebar-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0 15px;
        flex: 1;
    }

    .nav-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        color: rgba(0, 0, 0, 0.7);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-item i {
        width: 20px;
        text-align: center;
        font-size: 16px;
    }

    .nav-item:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #000;
    }

    .nav-item.active {
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        color: #000;
        box-shadow: 0 4px 15px rgba(1, 255, 167, 0.3);
    }

    .sidebar-footer {
        margin-top: auto;
        padding: 20px 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logout-btn {
        color: rgba(255, 0, 0, 0.7) !important;
    }

    .logout-btn:hover {
        background: rgba(255, 0, 0, 0.1) !important;
        color: #ff0000 !important;
    }

    /* Main Content */
    .dashboard-main {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        padding: 40px;
    }

    .dashboard-header h1 {
        margin: 0 0 8px 0;
        color: #000;
        font-size: 32px;
        font-weight: 700;
    }

    .dashboard-header p {
        margin: 0;
        color: rgba(0, 0, 0, 0.7);
        font-size: 16px;
    }

    .alert {
        padding: 16px 20px;
        border-radius: 12px;
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

    .alert-success {
        background: rgba(1, 255, 167, 0.2);
        color: #000;
        border: 1px solid rgba(1, 255, 167, 0.3);
    }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 24px;
    }

    .stat-value {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 14px;
        color: rgba(0, 0, 0, 0.6);
    }

    /* Dashboard Section */
    .dashboard-section {
        margin-top: 40px;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        padding: 20px 24px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .section-header h2 {
        margin: 0;
        color: #000;
        font-size: 26px;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-header h2::before {
        content: '';
        width: 4px;
        height: 26px;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        border-radius: 2px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        color: #000;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(1, 255, 167, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(1, 255, 167, 0.4);
    }

    /* Adverts Table */
    .table-container {
        overflow-x: auto;
        margin-top: 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 4px;
    }

    .adverts-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
    }

    .adverts-table thead {
        background: linear-gradient(135deg, rgba(1, 255, 167, 0.25) 0%, rgba(0, 200, 150, 0.25) 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .adverts-table th {
        padding: 16px 12px;
        text-align: left;
        font-weight: 700;
        font-size: 14px;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid rgba(1, 255, 167, 0.3);
        white-space: nowrap;
    }

    .adverts-table th:first-child {
        border-top-left-radius: 16px;
    }

    .adverts-table th:last-child {
        border-top-right-radius: 16px;
    }

    .adverts-table tbody tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .adverts-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(4px);
    }

    .adverts-table tbody tr:hover .table-logo {
        transform: scale(1.05);
    }

    .adverts-table tbody tr:last-child {
        border-bottom: none;
    }

    .adverts-table td {
        padding: 20px 16px;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        vertical-align: middle;
        background: rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

    .adverts-table tbody tr:hover td {
        background: rgba(255, 255, 255, 0.15);
    }

    .adverts-table tbody tr:first-child td:first-child {
        border-top-left-radius: 12px;
    }

    .adverts-table tbody tr:first-child td:last-child {
        border-top-right-radius: 12px;
    }

    .adverts-table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
    }

    .adverts-table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 12px;
    }

    .adverts-table td i {
        color: #01ffa7;
        margin-right: 6px;
        width: 16px;
    }

    .logo-cell {
        width: 100px;
        text-align: center;
    }

    .table-logo {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 12px;
        border: 2px solid rgba(1, 255, 167, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .table-logo:hover {
        transform: scale(1.1);
        border-color: rgba(1, 255, 167, 0.6);
        box-shadow: 0 4px 12px rgba(1, 255, 167, 0.3);
    }

    .no-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(1, 255, 167, 0.1) 0%, rgba(0, 200, 150, 0.1) 100%);
        border-radius: 12px;
        color: rgba(0, 0, 0, 0.4);
        border: 2px dashed rgba(1, 255, 167, 0.3);
    }

    .title-cell {
        min-width: 200px;
    }

    .title-wrapper {
        display: flex;
        align-items: center;
    }

    .title-text {
        font-weight: 600;
        color: #000;
        font-size: 15px;
        line-height: 1.4;
    }

    .phone-cell {
        min-width: 150px;
    }

    .phone-wrapper {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        background: rgba(1, 255, 167, 0.1);
        border-radius: 8px;
        color: #000;
        font-weight: 500;
    }

    .phone-wrapper i {
        color: #01ffa7;
        font-size: 14px;
    }

    .no-data {
        color: rgba(0, 0, 0, 0.3);
        font-style: italic;
    }

    .actions-cell {
        width: 120px;
        text-align: center;
        padding: 12px !important;
    }

    .action-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    @media (max-width: 768px) {
        .action-buttons {
            flex-direction: column;
            gap: 4px;
        }
    }

    .btn-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
        font-size: 16px;
        position: relative;
        overflow: hidden;
    }

    .btn-action::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-action:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-action i {
        position: relative;
        z-index: 1;
    }

    .btn-edit-table {
        background: #444;
        color: #000;
        border: 2px solid rgba(1, 255, 167, 0.4);
        box-shadow: 0 2px 8px rgba(1, 255, 167, 0.2);
    }

    .btn-edit-table:hover {
        background: linear-gradient(135deg, rgba(1, 255, 167, 0.4) 0%, rgba(0, 212, 170, 0.4) 100%);
        border-color: rgba(1, 255, 167, 0.6);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 20px rgba(1, 255, 167, 0.4);
    }

    .btn-edit-table:active {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 3px 10px rgba(1, 255, 167, 0.3);
    }

    .btn-delete-table {
        background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
        color: #ff4757;
        border: 1px solid rgba(255, 71, 87, 0.3);
    }

    .btn-delete-table:hover {
        background: linear-gradient(135deg, rgba(255, 71, 87, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    }

    .title-cell {
        font-weight: 700;
        color: #000;
        min-width: 150px;
    }

    .address-cell {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


    /* Adverts Grid - Keep for backward compatibility */
    .adverts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }

    .advert-card {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .advert-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .advert-logo {
        width: 100%;
        height: 180px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.05);
    }

    .advert-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .advert-content {
        padding: 20px;
    }

    .advert-content h3 {
        margin: 0 0 12px 0;
        color: #000;
        font-size: 20px;
        font-weight: 700;
    }

    .advert-name {
        margin: 0 0 8px 0;
        color: rgba(0, 0, 0, 0.7);
        font-weight: 500;
    }

    .advert-phone,
    .advert-address {
        margin: 8px 0;
        color: rgba(0, 0, 0, 0.6);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .advert-phone i,
    .advert-address i {
        color: #01ffa7;
        width: 16px;
    }

    .advert-location {
        display: flex;
        gap: 16px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .advert-location span {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .advert-location i {
        color: #01ffa7;
    }

    .advert-actions {
        padding: 0 20px 20px;
    }

    .btn-edit {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: rgba(0, 0, 0, 0.1);
        color: #000;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
        justify-content: center;
    }

    .btn-edit:hover {
        background: rgba(0, 0, 0, 0.15);
        border-color: rgba(0, 0, 0, 0.3);
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 60px 20px;
    }

    .empty-state i {
        font-size: 64px;
        color: rgba(0, 0, 0, 0.3);
        margin-bottom: 20px;
    }

    .empty-state h3 {
        margin: 0 0 8px 0;
        color: #000;
        font-size: 24px;
        font-weight: 700;
    }

    .empty-state p {
        margin: 0 0 24px 0;
        color: rgba(0, 0, 0, 0.6);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .dashboard-container {
            grid-template-columns: 1fr;
        }

        .dashboard-sidebar {
            position: static;
        }

        .sidebar-nav {
            flex-direction: row;
            overflow-x: auto;
        }
    }

    @media (max-width: 768px) {
        .user-dashboard {
            padding: 100px 10px 20px;
        }

        .dashboard-main {
            padding: 24px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .adverts-grid {
            grid-template-columns: 1fr;
        }

        .section-header {
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
            padding: 16px;
        }

        .section-header h2 {
            font-size: 20px;
        }

        .section-header h2::before {
            height: 20px;
        }

        .table-container {
            overflow-x: scroll;
            -webkit-overflow-scrolling: touch;
            margin: 0 -10px;
            border-radius: 12px;
        }

        .adverts-table {
            min-width: 700px;
        }

        .adverts-table th,
        .adverts-table td {
            padding: 12px 10px;
            font-size: 13px;
        }

        .table-logo {
            width: 45px;
            height: 45px;
        }

        .no-logo {
            width: 45px;
            height: 45px;
        }

        .phone-wrapper {
            padding: 4px 8px;
            font-size: 12px;
        }

        .btn-action {
            width: 32px;
            height: 32px;
            font-size: 12px;
        }
    }
 

    /* advert form */
    .advert-form {
        margin-top: 30px;
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-group label i {
        color: #01ffa7;
        font-size: 14px;
    }

    .form-input {
        width: 100%;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        color: #1a1a1a;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-sizing: border-box;
        font-family: inherit;
    }

    .form-input::placeholder {
        color: rgba(0, 0, 0, 0.6);
        font-weight: 400;
    }

    .form-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.7);
        border-color: #01ffa7;
        box-shadow: 0 0 0 3px rgba(1, 255, 167, 0.2);
        color: #000;
    }

    .form-input:hover:not(:disabled) {
        background: rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .form-input:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .form-input.error {
        border-color: #ff4757;
        background: rgba(255, 71, 87, 0.1);
    }

    textarea.form-input {
        resize: vertical;
        min-height: 100px;
    }

    select.form-input {
        cursor: pointer;
    }

    .error-message {
        display: block;
        color: #ff4757;
        font-size: 12px;
        margin-top: 6px;
        padding-left: 22px;
    }

    .current-logo {
        margin-bottom: 12px;
        text-align: center;
    }

    .current-logo img {
        max-width: 200px;
        max-height: 200px;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .current-logo span {
        display: block;
        margin-top: 8px;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
    }

    .logo-preview {
        margin-top: 12px;
    }

    .logo-preview img {
        max-width: 200px;
        max-height: 200px;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    /* Attachment Styles */
    .current-attachment {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(1, 255, 167, 0.3);
        border-radius: 12px;
        margin-bottom: 12px;
        gap: 15px;
    }

    .attachment-info {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
    }

    .attachment-info i {
        font-size: 24px;
        color: #01ffa7;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(1, 255, 167, 0.1);
        border-radius: 8px;
    }

    .attachment-info > div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .attachment-name {
        font-weight: 600;
        color: #000;
        font-size: 14px;
        word-break: break-word;
    }

    .attachment-label {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.5);
    }

    .attachment-size {
        font-size: 12px;
        color: rgba(0, 0, 0, 0.5);
    }

    .btn-view-attachment {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(1, 255, 167, 0.1);
        border: 1px solid rgba(1, 255, 167, 0.3);
        border-radius: 8px;
        color: #01ffa7;
        text-decoration: none;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .btn-view-attachment:hover {
        background: rgba(1, 255, 167, 0.2);
        border-color: #01ffa7;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(1, 255, 167, 0.3);
    }

    .attachment-preview {
        margin-top: 12px;
        padding: 12px 16px;
        background: rgba(1, 255, 167, 0.05);
        border: 2px dashed rgba(1, 255, 167, 0.3);
        border-radius: 12px;
    }

    .form-hint {
        display: block;
        margin-top: 8px;
        color: rgba(0, 0, 0, 0.6);
        font-size: 13px;
    }

    .form-hint i {
        margin-right: 6px;
        color: #01ffa7;
    }

    .form-actions {
        display: flex;
        gap: 16px;
        justify-content: flex-end;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-cancel {
        padding: 14px 28px;
        background: rgba(255, 255, 255, 0.2);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .btn-cancel:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .btn-submit {
        padding: 14px 28px;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        border: none;
        border-radius: 12px;
        color: #000;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(1, 255, 167, 0.3);
    }

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(1, 255, 167, 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }

        .form-actions {
            flex-direction: column-reverse;
        }

        .btn-cancel,
        .btn-submit {
            width: 100%;
            justify-content: center;
        }
    }

    /* end advert form */
    /* change password */
    .password-form {
        margin-top: 30px;
        max-width: 600px;
    }

    .password-form .form-group {
        margin-bottom: 24px;
    }

    .password-form .form-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .password-form .form-group label i {
        color: #01ffa7;
        font-size: 14px;
    }

    .password-form .form-input {
        width: 100%;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        border-radius: 12px;
        color: #1a1a1a;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-sizing: border-box;
        font-family: inherit;
    }

    .password-form .form-input::placeholder {
        color: rgba(0, 0, 0, 0.6);
        font-weight: 400;
    }

    .password-form .form-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.7);
        border-color: #01ffa7;
        box-shadow: 0 0 0 3px rgba(1, 255, 167, 0.2);
        color: #000;
    }

    .password-form .form-input:hover:not(:disabled) {
        background: rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .form-input.error {
        border-color: #ff4757;
        background: rgba(255, 71, 87, 0.1);
    }

    .error-message {
        display: block;
        color: #ff4757;
        font-size: 12px;
        margin-top: 6px;
        padding-left: 22px;
    }

    .form-actions {
        display: flex;
        gap: 16px;
        justify-content: flex-end;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-cancel {
        padding: 14px 28px;
        background: rgba(255, 255, 255, 0.2);
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .btn-cancel:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }
 
    .btn-submit {
        padding: 14px 28px;
        background: linear-gradient(135deg, #01ffa7 0%, #00d4aa 100%);
        border: none;
        border-radius: 12px;
        color: #000;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(1, 255, 167, 0.3);
    }

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(1, 255, 167, 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    @media (max-width: 768px) {
        .form-actions {
            flex-direction: column-reverse;
        }

        .btn-cancel,
        .btn-submit {
            width: 100%;
            justify-content: center;
        }
    }
    /* end change password */

    /* Quick Action Cards */
    .quick-action-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-decoration: none;
        color: #000;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }

    .quick-action-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(1, 255, 167, 0.05) 0%, rgba(0, 212, 170, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .quick-action-card:hover {
        transform: translateY(-5px);
        border-color: rgba(1, 255, 167, 0.4);
        box-shadow: 0 8px 25px rgba(1, 255, 167, 0.2);
    }

    .quick-action-card:hover::before {
        opacity: 1;
    }

    .quick-action-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .quick-action-card:hover .quick-action-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .quick-action-content {
        flex: 1;
    }

    .quick-action-content h3 {
        margin: 0 0 5px 0;
        font-size: 18px;
        font-weight: 700;
        color: #000;
    }

    .quick-action-content p {
        margin: 0;
        font-size: 14px;
        color: rgba(0, 0, 0, 0.6);
    }

    .quick-action-arrow {
        color: rgba(0, 0, 0, 0.3);
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .quick-action-card:hover .quick-action-arrow {
        color: #01ffa7;
        transform: translateX(5px);
    }

    @media (max-width: 768px) {
        .quick-action-card {
            padding: 20px;
        }

        .quick-action-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

        .quick-action-content h3 {
            font-size: 16px;
        }

        .quick-action-content p {
            font-size: 13px;
        }
    }