/* ==========================================================================
   Curriculum and Lessons
   ========================================================================== */

   .curriculum-container {
    margin: 20px;
}

.curriculum-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.curriculum-header {
    background-color: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.assignments-docs-wrapper {
    display: flex;
}

.assignments {
    flex: 1;
    padding: 10px;
}

.assignment-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.assignment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assignment-info {
    flex: 1;
}

.assignment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.assignment-title {
    font-weight: bold;
    font-size: 1.2em;
}

.assignment-score {
    font-size: 1em;
    color: #666;
}

.assignment-instructions {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
    all: unset;
    display: block;
}

.assignment-actions {
    display: flex;
    align-items: center;
}

.icon-display-actions {
    display: inline-flex;
    align-items: center;
}

.icon-display-actions .supporting-docs-text,
.assignment-actions .supporting-docs-text {
    cursor: pointer;
    font-size: 14px;
    margin-right: 7px;
}

.assignment-status input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    appearance: none;
    outline: none;
    border: 2px solid #666;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.assignment-status input[type="checkbox"]:checked {
    background-color: #4caf50;
    border-color: #4caf50;
}

.assignment-status input[type="checkbox"]:indeterminate {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #555;
    color: white;
    padding: 5px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #444;
}

.modaltable {
    max-height: 250px;
    overflow: auto;
}

.modaltable td {
    padding: 0;
}