/* Base Styles (Light Mode) */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light background */
    color: #333; /* Dark text */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff; /* Light container background */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s; /* Smooth container background transition */
}

.sticky {
    max-width: 600px;
    margin: 0 auto;
    padding: 5px;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #333; /* Dark background in dark mode */
    color: #fff; /* Light text in dark mode */
}

.dark-mode .container {
    background-color: #444; /* Dark container background in dark mode */
}

/* Mode Toggle Styles */
.mode-toggle {
    text-align: center; /* Align the toggle to the right */
    margin: auto; /* Adjust margins to position the toggle */
    display: flex; /* Use flexbox for layout */
	flex-direction: row;
}

.mode-label {
    color: #666; /* Dark gray color for the label */
    margin: auto; /* Add some spacing between label and switch */
}

.switch {
    position: relative;
    display: inline-block;
	margin: auto;
    width: 40px;
    height: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007BFF; /* Blue color when in dark mode */
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

form {
    text-align: center;
}

label, select, input, button {
    display: block;
    margin: 5px auto;
    width: 100%;
    max-width: 300px;
}

select {
    padding: 10px;
}

button {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
	border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Add your additional CSS styles here */
.step {
    display: none;
}

.step.active {
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

h1 {
	font-size: 23px;
    text-align: center;
}

h2 {
	font-size: 23px;
    text-align: center;
}

p {
    text-align: center;
}

/* Mobile-friendly styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    .logo img {
        max-width: 80px; /* Adjust the logo size as needed */
    }
}
