/* Estils per a la visualització dels mòduls dins un grup */
div.estudi-modules-group {
    margin-top: 100px;
    width: 100%;
}

div.estudi-modules-group a {
    color: #0e4486;
}

div.estudi-modules-group-description {
    margin: 20px 0;
}

div.estudi-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

div.estudi-module {
    text-align: center;
    height: 340px;
    background-color: #ECECEC;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

div.estudi-module>* {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.estudi-module-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

h3.estudi-module-name {
    text-transform: uppercase;
    font-size: 1.2em;
    color: #32425D;
}

p.estudi-module-code {
    justify-content: left;
    flex: 0;
}

p.estudi-module-hours {
    flex: 0;
    margin-bottom: 10px;
}

/* Estils per al popup del mòdul */

#module-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

#module-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 600px;
    max-height: 80vh;
    border-radius: 12px;
    overflow-y: auto;
    text-align: center;
}

#module-popup>*:not(img) {
    padding: 0 20px;
}

#module-popup a {
    background-color: #4c93eb;
    border-radius: 30px;
    text-decoration: none;
    padding: 5px 25px;
    color: white;
}

#popup-name {
    color: #4c93eb;
}

#popup-close {
    float: right;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

#popup-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}