    .dashboard-container {
        padding: 50px 0;
        background-color: #f8f9fa;
    }

    .dashboard-sidebar {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 20px;
        margin-bottom: 30px;
    }

    .user-summary {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .user-avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 4px solid #ab8e66;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .user-name {
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .dashboard-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dashboard-menu li {
        margin-bottom: 10px;
    }

    .dashboard-menu a {
        display: block;
        padding: 12px 15px;
        border-radius: 6px;
        color: #555;
        text-decoration: none;
        transition: all 0.3s;
        font-weight: 500;
    }

    .dashboard-menu a:hover,
    .dashboard-menu a.active {
        background-color: #ab8e66;
        color: #fff;
    }

    .dashboard-menu i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    .dashboard-content {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 30px;
        min-height: 500px;
    }

    .welcome-msg {
        font-size: 24px;
        font-weight: 600;
        color: #ab8e66;
        margin-bottom: 20px;
    }

    .info-card-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px 30px;
    }

    .info-card-col {
        width: 33.33%;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .info-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
    }

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: #ab8e66;
    }

    .info-card i {
        font-size: 32px;
        color: #ab8e66;
        margin-bottom: 10px;
    }

    .info-card h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .info-card p {
        color: #777;
        font-size: 14px;
        margin: 0;
    }

    .profile-details {
        margin-top: 40px;
    }

    .profile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .profile-header h4 {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .profile-header h4 i {
        color: #ab8e66;
        margin-right: 10px;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .info-item {
        background: #fcfcfc;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 6px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .info-item:hover {
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-color: #ab8e66;
    }

    .info-item:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: #ab8e66;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .info-item:hover:before {
        opacity: 1;
    }

    .info-label {
        font-size: 13px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        display: block;
        font-weight: 600;
    }

    .info-value {
        font-size: 16px;
        color: #333;
        font-weight: 500;
        word-break: break-word;
    }

    .info-value.empty {
        color: #aaa;
        font-style: italic;
    }

    /* Mobile/Tablet Styles */
    @media (max-width: 991px) {
        .dashboard-sidebar {
            margin-bottom: 30px;
        }

        .info-grid {
            grid-template-columns: 1fr;
            /* Stack columns on tablets and mobile */
            gap: 20px;
        }

        .profile-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .profile-header .btn {
            width: 100%;
        }
    }

    /* Small Mobile Styles */
    @media (max-width: 767px) {
        .dashboard-content {
            padding: 20px 15px;
        }

        .welcome-msg {
            font-size: 22px;
            text-align: center;
        }

        .user-summary {
            margin-bottom: 20px;
        }

        .info-card-col {
            width: 100%;
        }

        .info-value {
            font-size: 15px;
            /* Slightly smaller font for better fit */
        }
    }

    /* Modal Customization */
    .modal-content {
        border-radius: 10px;
        overflow: hidden;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .modal-header {
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
        padding: 20px;
    }

    .modal-title {
        font-weight: 600;
        color: #333;
        margin: 0;
    }

    .modal-body {
        padding: 30px;
    }

    .modal-footer {
        background: #f8f9fa;
        border-top: 1px solid #eee;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-footer .btn {
        border-radius: 5px;
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.5px;
        border: none;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .btn-gold {
        background-color: #ab8e66;
        color: #fff;
    }

    .btn-gold:hover,
    .btn-gold:focus {
        background-color: #8c7352;
        color: #fff;
    }

    .btn-gold-outline {
        background-color: transparent;
        border: 2px solid #ab8e66 !important;
        color: #ab8e66;
    }

    .btn-gold-outline:hover,
    .btn-gold-outline:focus {
        background-color: #ab8e66;
        color: #fff;
    }

    .btn-cancel {
        background-color: #fff;
        border: 1px solid #ddd !important;
        color: #777;
    }

    .btn-cancel:hover {
        background-color: #eee;
        color: #333;
        border-color: #ccc;
    }


    /* Toast Notification */
    #toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
    }

    .toast-message {
        background-color: #333;
        color: #fff;
        padding: 15px 25px;
        border-radius: 5px;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 300px;
        transform: translateX(120%);
        transition: transform 0.3s ease-in-out;
        border-left: 5px solid #ab8e66;
    }

    .toast-message.show {
        transform: translateX(0);
    }

    .toast-message.success {
        border-left-color: #28a745;
    }

    .toast-message.error {
        border-left-color: #dc3545;
    }

    .toast-message i {
        font-size: 18px;
    }

    /* Form Styles */
    .form-group {
        margin-bottom: 20px;
        position: relative;
    }

    .form-group label {
        font-weight: 500;
        color: #555;
        margin-bottom: 8px;
        display: block;
    }

    .form-control {
        height: 45px;
        border-radius: 5px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        font-size: 14px;
        transition: all 0.3s;
        box-shadow: none;
    }

    .form-control:focus {
        border-color: #ab8e66;
        box-shadow: 0 0 0 3px rgba(171, 142, 102, 0.1);
    }

    .form-control.is-invalid {
        border-color: #dc3545;
        background-image: none;
        /* Remove default bootstrap icon if any */
    }

    .invalid-feedback {
        display: none;
        width: 100%;
        margin-top: 5px;
        font-size: 12px;
        color: #dc3545;
    }

    .form-control.is-invalid+.invalid-feedback {
        display: block;
    }

    /* Modal Form Specifics */
    .modal-body form {
        padding: 0 10px;
    }

    /* Flex Grid for Address Cards */
    #shippingAddressesList {
        display: flex;
        flex-wrap: wrap;
    }

    #shippingAddressesList>[class*='col-'] {
        display: flex;
        flex-direction: column;
    }

    /* Address Card Styling */
    .address-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        /* Ensure it fills the flex column */
    }

    .address-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #ab8e66;
    }

    .address-card.default {
        border: 2px solid #ab8e66;
        background-color: #fffbf5;
    }

    .address-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .address-header h5 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: #333;
    }

    .address-details p {
        margin-bottom: 5px;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    .address-details strong {
        color: #333;
        font-weight: 600;
    }

    .address-actions {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
        text-align: right;
    }

    .address-actions .btn-link {
        color: #ab8e66;
        text-decoration: none;
        font-weight: 600;
        padding: 5px 10px;
        font-size: 13px;
        transition: color 0.2s;
    }

    .address-actions .btn-link:hover {
        color: #8c7352;
        text-decoration: underline;
    }

    .badge-default {
        background-color: #ab8e66;
        color: white;
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 4px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }