.title {
    text-align: center;
}

.list {
    display: flex;
    flex-flow: column;
    flex: 1;

    min-width: 500px;
    height: 100%;
    min-height: 20px;
    background-color: rgb(255, 255, 255);
    margin: 0 15px;
    padding: 8px;
    transition: all 0.2s linear;
}

.megalist {
    height: 100%;
    min-height: 200px;
    padding: 8px;
    overflow-y: scroll;
    scrollbar-width: thin; /* Set the width of the scrollbar */
    scrollbar-color: #7acac4 transparent;
}

.megalist::-webkit-scrollbar {
    scrollbar-width: thin;
    width: 2px; /* Adjust the width as needed */
}

.megalist::-webkit-scrollbar-thumb {
    background-color: #7acac4;
    border-radius: 20px;
}

.megalist::-webkit-scrollbar-track {
    background-color: #7acac4;
    border-radius: 20px;
    display: none;
}

.list .listitem {
    background-color: white;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    margin: 4px 0px;
    cursor: pointer;
}

.someitem {
    background-color: #f3f3f3;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    margin: 4px 0px;
    user-select: none;
}

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

.hover .hovertext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

.hover:hover .hovertext {
    visibility: visible;
}

#goals {
    position: -webkit-sticky;
    position: fixed;
    top: 90px;
}

#resources {
    min-width: 200px;
    max-width: 300px;
    position: -webkit-sticky;
}

#RememberingList,
#UnderstandingList,
#ApplyingList,
#AnalyzingList,
#EvaluatingList,
#CreatingList {
    min-width: 200px;
    max-width: 300px;
    position: -webkit-sticky;
}

#section {
    padding: 5px;
    background-color: #cae8ca;
    border: 2px solid #4caf50;
}

#topic {
    padding: 5px;
    background-color: white;
    border: 2px solid #d3d3d3;
}

#separator {
    padding: 5px;
    background-color: white;
    border: 2px solid white;
}

.activityToggle {
    border-style: none;
    background-color: white;
}

.wizardEditButton {
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: white;
}

#wizardcontainer {
    margin: auto;
}

.ActorRadioButton {
    width: 224px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.ResourcesRemembering {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #1376dc;
    background-color: #ffffff;
}

.ResourcesRemembering:focus {
    outline-color: #1376dc;
}

.ResourcesUnderstanding {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #29b3f2;
    background-color: #ffffff;
}

.ResourcesUnderstanding:focus {
    outline-color: #29b3f2;
}

.ResourcesApplying {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #37a872;
    background-color: #ffffff;
}

.ResourcesApplying:focus {
    outline-color: #37a872;
}

#NavStrategyName {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ResourcesAnalyzing {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fcd264;
    background-color: #ffffff;
}

.ResourcesAnalyzing:focus {
    outline-color: #fcd264;
}

.ResourcesEvaluating {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fba84c;
    background-color: #ffffff;
}

.ResourcesEvaluating:focus {
    outline-color: #fba84c;
}

.ResourcesCreating {
    width: 124px;
    height: 32px;
    /* UI Properties */
    background: #ffffff 0% 0% no-repeat padding-box;
    border-radius: 4px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #d83b44;
    background-color: #ffffff;
}

.ResourcesCreating:focus {
    outline-color: #d83b44;
}

.topicblock {
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: white;
    border: 1px solid #00147c;
    padding: 30px;
}

.activityWidget {
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #ecf4f4;
    padding: 10px;
}

.activity-title-box {
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    min-height: 3em;
    word-wrap: break-word;
    height: auto;
}

.newlistitem {
    background-color: #f0f4f4;
    background: #f0f4f4 0% 0% no-repeat padding-box;
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 10px;
}

.wider-dropdown {
    width: 500px; /* Default width */
}

.goalsDropdown {
    background-color: #ffffff;
    list-style: none;
    border: 1px solid grey;
    border-radius: 4px;
}

.bigger-checkbox {
    width: 20px;
    height: 20px;
}

.DesignGoalsDrop {
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden; /* Hide the horizontal scrollbar */
    scrollbar-width: thin; /* Set the width of the scrollbar */
    scrollbar-color: #7acac4 #7acac4; /* Set the color of the scrollbar */
}
.DesignGoalsDrop::-webkit-scrollbar {
    width: 2px;
}

.DesignGoalsDrop::-webkit-scrollbar-thumb {
    background-color: #7acac4;
    border-radius: 20px;
}

.DesignGoalsDrop::-webkit-scrollbar-track {
    background-color: #7acac4;
    border-radius: 20px;
    background-color: transparent;
}

#statistics-modal {
    position: sticky;
    top: 0; /* Adjust this value to your liking */
    z-index: 1;
}

.inner-dropdown .dropdown-menu {
    display: none;
    right: 0; /* Move the menu to the right edge of the parent */
}

/* Display the inner dropdown menu when the parent item is hovered over */
.inner-dropdown:hover .dropdown-menu {
    display: block;
    width: 150%;
    left: 100%;
    top: -15px;
}

.goalsText {
    width: 95%;
    overflow: hidden;
}

.goalsText::after {
    /* Position the arrow */
    content: "\25BC"; /* Unicode for down arrow */
    position: absolute;
    right: 5px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
}

.ai-resource-drop-area {
    width: 100%;
    padding: 50px;
    border: 2px dashed #bbb;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}
.ai-resource-drop-area.highlight {
    border-color: #333;
    background-color: #e9e9e9;
}
.ai-resource-list-item {
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    border-radius: 4px;
    background-color: #f1f1f1;
}

#video-links {
    width: 100%;
    height: 100%;
}

/* Style the button */
#add-video-btn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

#add-video-btn:hover {
    background-color: #0056b3;
}

.topicblock > .row > .resources-dropdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1200px) and (max-width: 1660px) {
    .topicblock > .row > .resources-dropdown-container {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}
.conceptual-container .conceptual-container-title-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.conceptual-container .two-rows-container {
    display: flex;
    flex-direction: column;
}
@media (max-width: 1199px) {
    .conceptual-container.offset-1 {
        margin-left: 0;
    }
}
