/* Quiz Styles */
.lov_container {
    width: 100%;
    padding: 2rem;
    background: white;
}

/* Header Styles */
.lov_text-center {
    text-align: center;
}

.lov_heart {
    fill: #f43f5e;
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

/* Button Styles */
.lov_btn {
    background-color: #f43f5e; /* Rose-600 */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px; /* Fully rounded */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    margin-top: 1rem;
}

.lov_btn:hover {
    background-color: #e11d48; /* Rose-700 */
}

/* Progress Bar Styles */
.lov_progress-bar {
    height: 6px;
    background-color: #f43f5e; /* Rose-500 */
    transition: width 0.3s ease;
}

/* Question and Option Styles */
.lov_question {
    font-size: 1.25rem;
    color: #9b2138; /* Rose-800 */
    margin-bottom: 1rem;
}

.lov_option {
    padding: 1rem;
    border: 1px solid #e5e7eb; /* Gray-200 */
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lov_option:hover {
    border-color: #f43f5e; /* Rose-500 */
    background-color: #fbcfe8; /* Rose-100 */
}

.lov_selected-option {
    background-color: #fbcfe8; /* Rose-100 */
    border-color: #f43f5e; /* Rose-500 */
}

/* Image Styles */
.lov_image {
    width: 100%; /* Keep this for responsive design */
    max-width: 250px; /* Set a maximum width to reduce size */
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.lov_image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.lov_image-container img {
    width: calc(25% - 1rem); /* 4 images per row on desktop */
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .lov_image-container img {
        width: calc(50% - 1rem); /* 2 images per row on mobile */
    }
}

/* Results Styles */
.lov_result-score {
    font-size: 2rem;
    color: #f43f5e; /* Rose-600 */
    margin: 1rem 0;
}

.lov_result-description {
    color: #4b5563; /* Gray-600 */
    margin-bottom: 1rem;
}

.lov_match-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.lov_match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.lov_match-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #f43f5e; /* Rose-500 */
    margin-bottom: 0.5rem;
}

.lov_match-name {
    font-weight: bold;
    color: #9b2138; /* Rose-800 */
}

.lov_match-bio {
    color: #4b5563; /* Gray-600 */
    font-size: 0.875rem; /* Small text */
}

.lov_match-compatibility {
    background-color: #fbcfe8; /* Rose-100 */
    color: #9b2138; /* Rose-800 */
    padding: 0.25rem 0.5rem;
    border-radius: 9999px; /* Fully rounded */
    font-size: 0.75rem; /* Extra small text */
}

.hidden {
    display: none;
}

/* Flex alignment for buttons */
.lov_button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

/* Centering for results page */
.lov_results-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Match grid layout */
.matches-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

/* Center the result image */
.result-image-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}