/* Dark Mode */
body.dark-mode {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

body.dark-mode .navbar {
    background-color: #2c2c2c !important;
}

body.dark-mode .navbar-brand,
body.dark-mode .nav-link {
    color: #f0f0f0 !important;
}

body.dark-mode .card {
    background-color: #2c2c2c;
    border-color: #444;
}

body.dark-mode .form-control {
    background-color: #333;
    color: #f0f0f0;
    border-color: #555;
}

body.dark-mode .form-control::placeholder {
    color: #888;
}

body.dark-mode footer {
    background-color: #111 !important;
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.tool-container {
    max-width: 1200px;
    margin: auto;
}

/* CodeMirror Styles */
.CodeMirror {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    height: 400px;
    font-family: 'JetBrains Mono', monospace;
}

body.dark-mode .CodeMirror {
    border-color: #555;
}

/* AdSense Safety */
.ad-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Sticky Sidebar */
@media (min-width: 992px) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 2rem;
        height: calc(100vh - 4rem);
        overflow-y: auto;
    }
}
