.module-container {
    border: 1px solid #ccc;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

.module-container:hover {
    cursor: pointer;
    border: 2px solid #FFC185;
}

.module-container.last-interacted {
    border: 4px solid #1B6970;
}

.description-container {
    display: flex;
    flex-direction: column;
    flex: 8;
    padding-right: 1rem;
}

.text-data {
    padding: 1rem;
}

.image-data {
    flex: 2;
}

.text-data p {
    color: hsl(30,2%,40%);
    font-size: 1.5rem;
}

.image-data img {
    width: 100%;
    height: auto;
}

.progress-container {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.progress-bar-container {
    height: 2rem;
    background-color: #eee;
    position: relative;
    border-radius: 1rem;
    margin-right: 1rem;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: rgb(27,105,112);
    border-radius: 1rem;
}

.progress-number {
    text-align: center;
    font-weight: 600;
}

@media only screen and (max-width: 600px) {
    .image-data {
        display: none;
    }

    .text-data {
        flex: 12;
    }
}
