/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f9f9f9;
    transition: background 0.3s, color 0.3s;
}

/* Header */
header {
    background: #222;
    color: white;
    padding: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#darkModeToggle {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

/* Ad Spaces */
.ad-space {
    width: 20%;
    height: 600px;
    background: #ddd;
    text-align: center;
    line-height: 600px;
}

/* Main Content */
main {
    width: 55%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, button {
    padding: 10px;
    margin: 10px;
    width: 80%;
}

button {
    background: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #cc0000;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

/* SEO Section */
.seo-content {
    padding: 20px;
    text-align: left;
    max-width: 80%;
    margin: auto;
}

/* Dark Mode */
.dark-mode {
    background: #111;
    color: white;
}

.dark-mode main {
    background: #222;
    color: white;
}
