.select-country-container {
    min-height: 100vh;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px;
}

.country-selection-page {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header with back button */
.page-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.back-button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #1F2937;
}

.back-button:hover {
    background: #E5E7EB;
    transform: translateX(2px);
}

/* Title Section */
.country-header {
    text-align: right;
    /* margin-bottom: 30px; */
    padding: 0 10px;
    color: #fff;
}

.country-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #3B5BE3;
    text-align: right;
}

.country-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #6B7280;
    text-align: right;
}

/* Countries List */
.countries-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.country-item {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: #1F2937;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #F3F4F6;
}

.country-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #E5E7EB;
}

.country-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.country-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1F2937;
}

.active-badge {
    background: #86D672;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.country-flag {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    flex-shrink: 0;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-flag-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.no-countries {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    color: #6B7280;
    font-size: 16px;
}

/* City Skyline */
.city-skyline {
    margin-top: auto;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.city-skyline svg {
    width: 100%;
    max-width: 540px;
    height: auto;
}

/* Bottom Navigation */
.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    z-index: 100;
}

.nav-item {
    cursor: pointer;
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-square {
    width: 20px;
    height: 20px;
    border: 2px solid #9CA3AF;
    border-radius: 3px;
}

.nav-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #9CA3AF;
    border-radius: 50%;
    background: #9CA3AF;
}

.nav-back {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #9CA3AF;
}

/* Responsive */
@media (max-width: 768px) {
    .country-title {
        font-size: 28px;
    }

    .country-subtitle {
        font-size: 14px;
    }

    .country-selection-page {
        padding: 0px;
    }

    .country-item {
        padding: 16px 20px;
    }

    .country-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .country-title {
        font-size: 24px;
    }

    .country-subtitle {
        font-size: 13px;
    }

    .country-item {
        padding: 14px 16px;
    }

    .country-name {
        font-size: 16px;
    }

    .country-flag,
    .country-flag-placeholder {
        width: 40px;
        height: 40px;
    }

    .active-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

