* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar {
    margin: 0 !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-brand img {
    height: 25px !important;
    width: auto;
}

.navbar-brand {
    font-weight: 700;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #dee2e6;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.display-5 {
    font-size: 2.5rem;
}

.bg-dark {
    background-color: #212529 !important;
}

.text-primary {
    color: #0d6efd !important;
}

footer {
    margin-top: auto;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.card {
    border-radius: 0.75rem;
}

.alert {
    border-radius: 0.375rem;
}

.pricing-card {
    border-top: 3px solid #0d6efd;
}

.stat-card {
    border-left: 4px solid #0d6efd;
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 28px;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.star-rating input:checked + label {
    color: #ffc107;
}
