/* Default Light Mode */
body {
    background-color: #ffffff;
    color: #333;
}

/* Dark Mode */
.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

/* Navbar in Dark Mode */
.dark-mode .navbar {
    background-color: #222;
    border-bottom: 1px solid #444;
}

/* Cards and Containers in Dark Mode */
.dark-mode .card, .dark-mode .list-group-item {
    background-color: #222;
    color: #f5f5f5;
    border-color: #444;
}

/* Buttons */
.dark-mode .btn {
    background-color: #444;
    color: #fff;
    border-color: #666;
}

.dark-mode .btn:hover {
    background-color: #555;
}

footer {
    background-color: #343a40; /* Dark background for footer */
    color: #fff; /* White text */
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Custom container for footer */
.container-custom {
    max-width: 60%; /* Limit the width to 60% */
    margin: 0 auto; /* Center the container */
}

footer {
    background-color: #343a40; /* Dark background for footer */
    color: #fff; /* White text */
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#search-results {
    position: relative;
    background-color: white;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

#search-results li {
    padding: 8px;
    cursor: pointer;
}

#search-results li:hover {
    background-color: #f8f9fa;
}

.share-buttons .btn {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-buttons .btn i {
    font-size: 20px;
}

p {
    margin-bottom: 1em;
}

br {
    line-height: 1.5;
}

ol {
    list-style-type: decimal;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

ul {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1em;
}
