/* ===========================================
   Love Calculator - Tool Specific Styles
   =========================================== */

/* Tool Layout */
.lvc-box {
    max-width: 500px; /* Centered, compact design */
    margin: 0 auto;
    text-align: center;
    background: #fef2f2; /* Light Pink/Red Background */
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 100, 150, 0.2);
}

/* Input Fields */
.lvc-inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.lvc-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lvc-label {
    font-size: 1rem;
    font-weight: 700;
    color: #be185d; /* Dark Rose */
    margin-bottom: 8px;
}

.lvc-input {
    padding: 12px;
    border: 3px solid #fecdd3; /* Light Pink Border */
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: center;
    color: #9d174d; /* Input text color */
    background: #ffffff;
    transition: border-color 0.3s;
}

.lvc-input:focus {
    border-color: #f43f5e; /* Bright Red on focus */
    outline: none;
}

/* Calculate Button */
.lvc-btn-calc {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: #ec4899; /* Primary Pink Button */
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.5);
    transition: background 0.2s, transform 0.1s;
}
.lvc-btn-calc:hover {
    background: #db2777;
}
.lvc-btn-calc:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(236, 72, 153, 0.5);
}

/* --- Results Display --- */

.lvc-results-section {
    margin-top: 35px;
    border-top: 2px dashed #fecdd3;
    padding-top: 30px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lvc-percentage {
    font-size: 4rem;
    font-weight: 900;
    color: #f43f5e; /* Bright Red Result */
    line-height: 1;
    margin-bottom: 10px;
}

.lvc-result-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #9d174d;
    margin-bottom: 15px;
}

.lvc-match-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* Specific styles for low, medium, high results */
.low-match {
    color: #9d174d;
}
.medium-match {
    color: #f59e0b; /* Amber/Orange */
}
.high-match {
    color: #10b981; /* Green/Success */
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .lvc-inputs {
        flex-direction: column;
        gap: 15px;
    }
    .lvc-percentage {
        font-size: 3rem;
    }
}