/* Additional custom styles */

/* Beer rating styling */
.beer-rating-container {
    margin-top: 10px;
}

.beer-rating-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.progress {
    height: 8px;
    margin-bottom: 10px;
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Additional spacing and layout */
.container {
    max-width: 1200px;
}

/* Beer list styling */
#beer-list .card {
    border-left: 5px solid var(--bs-primary);
}

/* Venue card consistent height */
.venues-list .card {
    height: 100%;
}

/* Navbar hop icon styling */
.bi-hop {
    color: #ffc107;
    margin-right: 5px;
}

/* Button hover animation */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Rating colors */
.bg-success.beer-rating-bar {
    background-color: #28a745 !important;
}

.bg-info.beer-rating-bar {
    background-color: #17a2b8 !important;
}

.bg-warning.beer-rating-bar {
    background-color: #ffc107 !important;
}

.bg-danger.beer-rating-bar {
    background-color: #dc3545 !important;
}
