/* Set background color to black */
body {
background-color: #000 !important;
color: #fff !important;
}
/* Change text colors */
h1, h2, h3, h4, h5, h6, p, a, span, div {
color: #fff !important;
}
/* Change background of specific sections */
header, footer, .sidebar, .content {
background-color: #000 !important;
}
/* Change button styles */
button, .btn {
background-color: #ff6600 !important;
color: #fff !important;
border: 1px solid #ff6600 !important;
}
button:hover, .btn:hover {
background-color: #ff4500 !important;
}
/* Change links color */
a {
color: #ff6600 !important;
}
a:hover {
color: #ff4500 !important;
}
/* Change input fields style */
input, textarea, select {
background-color: #222 !important;
color: #fff !important;
border: 1px solid #444 !important;
}
input::placeholder, textarea::placeholder {
color: #bbb !important;
}
/* Ensure full black layout */
.container, .wrapper, .main-content {
background-color: #000 !important;
}
/* Responsive Fixes */
@media (max-width: 768px) {
body {
background-color: #000 !important;
}
}