/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base body styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #111827; /* Dark gray background */
    color: #d1d5db; /* Light gray text */
}

/* Style for the active module button */
.module-btn.active {
    background-color: #374151; /* Medium gray */
    color: #ffffff; /* White text */
}

/* Modal container */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Black with opacity */
}

/* Modal content box */
.modal-content {
    background-color: #1f2937; /* Darker gray */
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    color: #d1d5db;
}

/* Modal close button */
.modal-close {
    color: #9ca3af;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #ffffff;
}

/* Styling for checklist category groups */
.checklist-item-group {
    border-left: 2px solid #374151;
    padding-left: 1.5rem;
    margin-left: 0.5rem;
    margin-top: 1rem;
}

/* Progress bar container */
.progress-bar-container {
    width: 100%;
    background-color: #374151;
    border-radius: 9999px;
    height: 8px;
}

/* The actual progress bar */
.progress-bar {
    background-color: #4ade80; /* Green */
    height: 8px;
    border-radius: 9999px;
    transition: width 0.3s ease-in-out;
}
