
:root {
    --background-color-light: #fdeff2;
    --text-color-light: #333;
    --container-bg-light: #ffffff;
    --button-bg-light: #ff8fab;
    --button-text-light: white;

    --background-color-dark: #3a2e3f;
    --text-color-dark: #f0e6f6;
    --container-bg-dark: #4f3a55;
    --button-bg-dark: #ff8fab;
    --button-text-dark: white;
}

body {
    background-color: var(--background-color-light);
    color: var(--text-color-light);
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark);
}

.theme-switch-wrapper {
    position: absolute;
    top: 75px;
    right: 15px;
}

love-calculator {
    display: block;
    margin-bottom: 30px;
}

.content-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--container-bg-light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

body.dark-mode .content-box {
    background: var(--container-bg-dark);
}
