body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
}

.main-container {
    max-width: 420px;
    margin: 60px auto;
    padding: 0 30px;
}

/* Reset margin for mobile */
@media (max-width: 767px) {
    .main-container {
        margin: 0 auto;
        padding: 20px;
        max-width: 100%;
        box-shadow: none;
    }
}

/* Header */
.header-row {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .header-row {
        position: absolute;
        top: 30px;
        left: 40px;
        margin: 0;
        z-index: 10;
        width: auto;
    }
}

.back-link {
    color: #333;
    font-size: 18px;
}

.back-link:hover {
    color: #000;
    text-decoration: none;
}

/* Logo */
/* Logo */
.logo-row {
    margin-bottom: 20px;
}

.main-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Typography */
.title-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Form */
.form-group label {
    font-weight: 500;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 16px;
    color: #333;
}

.form-control:focus {
    border-color: #333;
    box-shadow: none;
}

/* Password Toggle */
.input-group {
    width: 100%;
    position: relative;
}

.input-group .form-control {
    border-right: 0;
}

.input-group-addon {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    color: #555;
}

/* Fix for bootstrap input-group radius when addon is on right */
.input-group .form-control:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


/* Divider */
.divider-row {
    margin: 20px 0;
}

.or-text {
    color: #888;
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    font-size: 14px;
}

/* Social Buttons */
.social-btn {
    height: 48px;
    border-radius: 24px;
    /* Pill shape */
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
}

.social-btn:hover,
.social-btn:focus {
    background: #f9f9f9;
    border-color: #ccc;
    outline: none;
}

.social-icon-img {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

/* Continue Button */
/* Continue Button */
.continue-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 8px;
    /* Inside auto layout */
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
    cursor: pointer;
}

.continue-btn:hover {
    background-color: var(--secondary-color);
    opacity: 0.5;
}

/* Success Icon */
.success-circle {
    width: 80px;
    height: 80px;
    background-color: #1a9606;
    /* Green color */
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Line-height trick for centering in BS3 */
    line-height: 80px;
}

.success-circle .fa {
    color: #fff;
    font-size: 32px;
}

/* Description Text */
.description-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-text {
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.signup-link {
    color:var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
    color:var(--primary-color);
}

/* Custom logo overrides to try and match logo better */
/* .logo-circle removed as it was empty */


/* Dashboard Styles */
.dashboard-body {
    background-color: #0d1f2d;
    /* Dark background matching header/top */
}

.dashboard-nav {
    background-color: transparent;
    border: none;
    margin-bottom: 0;
}

.text-white {
    color: #fff;
    font-size: 20px;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.dashboard-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
}

/* User Info */
.user-info-row {
    padding: 10px 20px 20px;
    color: #fff;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background-color: #d1e8ff;
    /* Light blueish */
    color: #0d1f2d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
}

.media-heading {
    margin-top: 5px;
    margin-bottom: 2px;
    font-weight: 700;
}

.small-text {
    font-size: 13px;
    color: #a0aeb9;
}

/* Loyalty Card */
.loyalty-card {
    background:  var(--primary-color); /* Adjusted to nicer pink/purple */
    border-radius: 12px;
    padding: 24px;
    margin: 0 5px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header-row {
    margin-bottom: 30px;
    font-weight: 600;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.big-points {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.points-label {
    font-size: 14px;
    opacity: 0.9;
}

.qr-placeholder {
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Wallet Button */
.wallet-row {
    margin: 20px 0 30px;
}

.wallet-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    width: 132px;
    height: 42px;
    padding: 0;
    font-size: 10px;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.wallet-btn .wallet-icon-img {
    width: 24px;
    height: auto;
    margin-right: 8px;
    margin-left: 5px;
}

.wallet-btn:hover {
    color: #fff;
    background-color: #222;
}

.btn-black {
    background-color: var(--secondary-color);
    color: #000000;
    border: 1px solid var(--secondary-color);
}

.btn-black:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 0.5;
    color: #000000;
}

/* White Section */
.white-section {
    background-color: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    padding: 30px 20px 80px;
    /* Extra padding at bottom for scroll */
    min-height: 400px;
}

.white-section h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d1f2d;
}

.grey-text {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}

/* Benefits List */
/* Benefits List */
.benefits-row {
    margin-top: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); /* Subtle shadow */
    border: 1px solid #f0f0f0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.blue-light-bg {
    background-color: #E6F3F8; /* Light blue */
    color: #3AAACF; /* Blue icon color */
    font-size: 20px;
}

.benefit-text p {
    margin: 0;
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.benefit-text strong {
    display: block;
    color: #0d1f2d;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}


/* -- Join Page Styles -- */

.reward-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.reward-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    /* Light Blue Gradient example */
    padding: 30px 20px;
    position: relative;
    color: #000;
}

.logo-circle-bg {
    width: 70px;
    height: 70px;
    /*background: #0d1f2d;*/
    /* Dark background matching logo in image maybe? or just transparent if logo is png */
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo {
    width: 60px;
    height: auto;
    border-radius: 20%;
    margin: 0 auto 15px;
}

.card-title {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 5px;
    color: #000;
}

.card-subtitle {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.reward-body {
    padding: 30px;
}

.reward-heading {
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #000;
}

.reward-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Feature List */
.feature-item {
    display: table;
    /* Using table for easier alignment without flexbox */
    width: 100%;
    margin-bottom: 20px;
}

.icon-box {
    display: table-cell;
    vertical-align: middle;
    width: 50px;
    padding-right: 15px;
}

.icon-box img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Material icon circle badge */
.feature-icon-circle .material-symbols-outlined {
    color: #ffffff;
    font-size: 22px;
}

.feature-icon-circle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px;
    gap: 10px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 99px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.text-box {
    display: table-cell;
    vertical-align: middle;
}

.feature-title {
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 2px;
    color: #0d1f2d;
    /* Dark Navy for title */
}

.feature-desc {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Join Button */
/* Join Button */
.join-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
    cursor: pointer;
}

.join-btn:hover {
    background-color: var(--secondary-color);
    opacity: 0.5;
}


/* -- Signup Page Styles -- */
.terms-text {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 10px;
}

.terms-link {
    color: #555;
    text-decoration: underline;
    font-weight: 500;
}

.terms-link:hover {
    color: #333;
}

/* Disabled button state */
.btn-disabled,
.btn-disabled[disabled] {
    /* Auto layout properties inherited if used with .continue-btn */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    gap: 8px;
    width: 100%;
    height: 48px;

    background: rgba(83, 88, 98, 0.2) !important;
    border-radius: 8px;

    color: #a0a0a0 !important;
    /* Keeping text gray */
    border: none;
    cursor: not-allowed;
    flex: none;
    order: 3;
    align-self: stretch;
    flex-grow: 0;
}

.btn-disabled:hover,
.btn-disabled[disabled]:hover {
    background: rgba(83, 88, 98, 0.2) !important;
}


/* -- Set Password Page Styles -- */
.subtitle-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.validation-list {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 5px;
}

.validation-item {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
}

.status-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Colors for validation */
.text-danger {
    color: #d32f2f;
    /* Red */
}

.text-success {
    color: #388e3c;
    /* Green */
}

/* Override bootstrap text-danger/success if needed or just use these classes which match BS names */
.validation-item.text-danger .status-icon {
    color: #d32f2f;
}

.validation-item.text-success .status-icon {
    color: #388e3c;
}


/* -- Activate Membership Page Styles -- */
.country-select {
    height: 48px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-right: 0;
    color: #333;
    padding: 6px 15px;
}

.country-select:hover,
.country-select:focus,
.country-select:active {
    background: #f0f0f0;
    border-color: #ccc;
    outline: none;
    box-shadow: none;
}

.prefix-addon {
    background: #fff;
    color: #555;
    font-weight: 500;
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
}


/* Phone Group Container Fix */
.phone-group {
    border-radius: 8px;
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100%;
    align-items: stretch !important;
    border: 1px solid #ddd;
    transition: border-color 0.15s ease-in-out;
    overflow: visible;
}

.phone-group .form-control {
    border: none !important;
    box-shadow: none !important;
    height: 46px !important;
    margin: 0 !important;
}

.phone-group .input-group-addon {
    border: none !important;
    background: #fff !important;
    height: 46px !important;
    margin: 0 !important;
}

.phone-group .input-group-btn>.btn {
    border: none !important;
    background: #f9f9f9 !important;
    box-shadow: none !important;
    height: 46px !important;
    margin: 0 !important;
}

/* Highlight entire phone-group when input is focused */
.phone-group:focus-within {
    border-color: #333 !important;
    outline: none;
}

.phone-group.error {
    border-color: #d32f2f !important;
}

.phone-group.error:focus-within {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

/* Critical: Override Bootstrap's width: 1% issue */
.phone-group .form-control,
.input-group.phone-group .form-control {
    flex: 1 1 100% !important;
    min-width: 100px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 8px 8px 0 !important;
    position: relative !important;
    z-index: 3 !important;
}

.phone-group .input-group-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    display: flex !important;
    align-items: stretch !important;
}

.phone-group .input-group-btn .btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
}

.phone-group .input-group-addon {
    flex: 0 0 auto !important;
    width: auto !important;
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
}

/* Rounded corners for first child (button) */
.phone-group .input-group-btn:first-child>.btn {
    border-radius: 8px 0 0 8px !important;
}

/* Ensure input is always clickable and typeable */
.phone-group .form-control {
    pointer-events: auto !important;
    -webkit-user-select: text !important;
    user-select: text !important;
}

.phone-group .form-control:focus {
    z-index: 4 !important;
    outline: none;
    border: none !important;
}

.phone-group .input-group-btn .btn:focus {
    outline: none;
    border: none !important;
}

/* Form Error State */
.form-control.error {
    border-color: #d32f2f !important;
}

.form-control.error:focus {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25) !important;
}

.phone-group.error {
    border-color: #d32f2f !important;
}

/* -- Sidebar Styles -- */
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay effect */
    pointer-events: none;
}

#wrapper.toggled {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 280px;
    /* Sidebar width */
    transform: translateX(-100%);
}

#wrapper.toggled #sidebar-wrapper {
    width: 280px;
    transform: translateX(0);
}

.sidebar-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-brand {
    font-size: 24px;
    font-weight: 800;
    color: #0d1f2d;
    text-decoration: none;
    font-style: italic;
    /* Matching Push logo style approximately */
}

.sidebar-brand:hover {
    text-decoration: none;
    color: #0d1f2d;
}

.close-sidebar {
    color: #333;
    font-size: 18px;
}

.sidebar-nav {
    padding: 0 20px;
    list-style: none;
    margin-bottom: 50px;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #555;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: #fff;
    /* Design shows clean look, maybe highlight? */
    color: #000;
}

.sidebar-nav li a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.sidebar-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 30px;
}

/* Adjust sidebar user profile to match design */
.sidebar-footer .media {
    display: flex;
    align-items: center;
}

.sidebar-footer .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-footer .media-body {
    padding-left: 10px;
    vertical-align: middle;
}

.sidebar-footer .media-heading {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.sidebar-footer .email-text {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.sidebar-footer .media-right {
    padding-left: 10px;
    color: #555;
    font-size: 14px;
}

/* Responsive Sidebar (Desktop) */
@media (min-width: 768px) {

    /* Hide Toggle & Close Buttons */
    #menu-toggle,
    .close-sidebar {
        display: none !important;
    }

    /* Reset Wrapper to sidebar width, visible, no overlay */
    #wrapper {
        width: 280px;
        visibility: visible;
        opacity: 1;
        background: transparent;
        pointer-events: auto;
    }

    /* Sidebar Position Reset */
    #sidebar-wrapper {
        transform: translateX(0);
        left: 0;
        margin-left: 0;
        box-shadow: 1px 0 10px rgba(0, 0, 0, 0.05);
    }

    /* Push Main Content */
    body.dashboard-body {
        padding-left: 280px;
        transition: padding-left 0.5s ease;
    }

    /* Adjust Dashboard Container for Desktop */
    .dashboard-container {
        padding: 30px;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Fix Navbar overlap issue since we aren't using absolute header-row here */
    .dashboard-nav {
        padding-left: 15px;
    }

    /* Adjust Brand alignment */
    .navbar-brand {
        width: auto !important;
        text-align: left !important;
        padding-left: 0;
    }
}

/* Flag Icons */
.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    margin-right: 2px;
    object-fit: cover;
    vertical-align: middle;
}

.country-list li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

/* Settings Page Styles */
.back-link-text {
    color: #0d1f2d;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.back-link-text i {
    margin-right: 8px;
}

.back-link-text:hover {
    color: #000;
    text-decoration: none;
}

.settings-title {
    font-weight: 700;
    color: #0d1f2d;
    margin-top: 10px;
    margin-bottom: 10px;
}

.settings-desc {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.settings-list {
    margin-top: 10px;
}

.setting-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    /* Spacing between items */
    /* border-bottom: 1px solid #eee; */
    /* Screenshot doesn't clearly show borders, looks clean. Adding invisible spacing. */
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.setting-item:hover {
    text-decoration: none;
    color: #0d1f2d;
    /* background-color: #f9f9f9; Optional hover effect */
}

.setting-icon {
    width: 30px;
    font-size: 20px;
    color: #555;
    /* Icon color */
    margin-right: 15px;
    text-align: center;
}

.setting-text {
    flex-grow: 1;
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

/* Your Information Page Styles */
.light-grey-bg {
    background-color: #f9f9f9;
}

.info-card-row {
    margin-bottom: 20px;
}

.info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
}

.card-title {
    font-weight: 700;
    color: #0d1f2d;
    margin-bottom: 25px;
    margin-top: 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 5px;
}

.info-content label {
    display: block;
    font-size: 13px;
    color: #0d1f2d;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.info-action a {
    color: #38bdf8;
    /* Light blue color from screenshot */
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.info-action a:hover {
    text-decoration: underline;
}

.info-action i {
    margin-right: 4px;
}

/* Bottom Sheet Modal Style (Mobile-like) */
.bottom-sheet-modal .modal-dialog {
    margin: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

.bottom-sheet-modal .modal-content {
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
    min-height: 300px;
    /* Or as needed */
}

.bottom-sheet-modal .modal-header {
    padding: 15px;
    border-bottom: none;
}

.bottom-sheet-modal .close {
    opacity: 0.6;
    font-size: 28px;
}

.bottom-sheet-modal .modal-body {
    padding: 10px 25px 30px;
}

.bottom-sheet-modal label {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}

.bottom-sheet-modal .form-control {
    border-radius: 4px;
    height: 45px;
    border: 1px solid #ddd;
    box-shadow: none;
    background-color: #fff;
    margin-bottom: 15px;
}

.bottom-sheet-modal .btn-container {
    margin-top: 30px;
}
/* -- Security Page Styles -- */

.security-field-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.field-info label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: #0d1f2d;
}

.field-info p {
    margin: 0;
    color: #555;
    font-size: 14px;
    letter-spacing: 2px;
    /* For the masked password dots */
}

.modify-link {
    font-size: 13px;
    color: #38bdf8;
    /* Light blue similar to existing links */
    font-weight: 500;
    text-decoration: none;
}

.modify-link i {
    margin-right: 4px;
}

.modify-link:hover {
    text-decoration: underline;
}

.last-modified-text {
    font-size: 12px;
    color: #999;
}

.delete-btn {
    display: block;
    width: 100%;
    background-color: #EA4335;
    /* Red color */
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
}

.delete-btn:hover {
    background-color: #D33428;
    color: #fff;
}

/* -- Confirm Delete Modal Styles -- */

.delete-modal-content {
    /* border-radius handled by bottom-sheet-modal class if present, or default modal */
    padding: 10px;
}

.modal-header.no-border {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 700;
    color: #0d1f2d;
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-desc {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

.modal-warning {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.consequence-list {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.consequence-list li {
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.modal-question {
    color: #555;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.continue-question {
    font-weight: 700;
    color: #0d1f2d;
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-actions {
    margin-top: 10px;
}

.btn-outline-grey {
    background-color: #f5f5f5;
    /* Light grey background for cancel */
    border: 1px solid #ddd;
    color: #333;
    font-weight: 600;
    border-radius: 8px;
    height: 48px;
    margin-bottom: 15px;
}

.btn-outline-grey:hover {
    background-color: #e0e0e0;
}

.btn-danger-filled {
    background-color: #EA4335;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    height: 48px;
    border: none;
}

.btn-danger-filled:hover {
    background-color: #D33428;
    color: #fff;
}