/* Beatle Buddy - Public Styles */
html, body {
    height: 100%;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-footer {
    margin-top: auto;
}

.hero-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-choice {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.station-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: #e9ecef;
    color: #495057;
    display: inline-block;
    margin-bottom: 1rem;
}

.form-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 1.5rem;
}

.rating-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.rating-group .btn-check + .btn {
    border-radius: 0.5rem;
    min-width: 3rem;
}

.rating-label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.rating-parameter {
    background: #f8f9fa;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .form-section {
        padding: 1rem;
    }
    .btn-choice {
        font-size: 1rem;
        padding: 1rem 0.75rem;
    }
}
