
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #fef5f5;
    color: #444;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 85%;
    max-width: 750px;
    background: #fff8e7;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px dashed #ffc0cb;
}

.dark-mode {
    background-color: #1e1e1e;
    color: #f8f8f2;
}

.dark-mode .container {
    background: #2a2a2a;
    color: #f8f8f2;
    border-color: #e69a8d;
    box-shadow: 0 4px 12px rgba(255, 192, 203, 0.2);
}

#theme-toggle {
    background: #e69a8d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
}

#theme-toggle:hover {
    background: #d08078;
}

.dark-mode #theme-toggle {
    background: #ffc0cb;
    color: #333;
}

.dark-mode #theme-toggle:hover {
    background: #ff9aaf;
}

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    border: 2px dashed #ffc0cb;
    transition: opacity 0.5s ease-in-out;
}

