/* Dark Mode Toggel */


.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

/* Default color for links in light mode */
.dark-mode-service-link {
    color: inherit;
    /* Inherit the default color based on the body */
    text-decoration: none;
    /* Remove underline */
}

/* Color for links in dark mode */
.dark-mode .dark-mode-service-link {
    color: #e0e0e0;
    /* Light color for dark mode */
}

/* Optional: Style adjustments for hover */
.dark-mode-service-link:hover {
    text-decoration: underline;
}

/* Styling for dark mode toggle button */
/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    cursor: pointer;
}