.specs-container {
    line-height: 1.6;
}

.title {
    font-weight: bold;
    color: #1b3a66;
}

p {
    font-size: 20px;
    margin: 10px 0;
}

.color-box {
    display: inline-block;
    text-align: justify;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
    border: 1px solid #000;
}

.azul {
    background-color: #009fe3;
}

.gris {
    background-color: #d3d3d3;
}

.negro {
    background-color: #4a4a4a;
}

.ocre {
    background-color: #ffd700;
}

.rojo {
    background-color: #7f1414;
}

.salmon {
    background-color: #ff7f00;
}

.modal {
    display: none;
    position: fixed; 
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 50%;
    max-height: 80%;
}

.modal.hidden {
    display: none; 
}

.close {
    position: absolute;
    top: 20px;
    right: 30px; 
    color: white;
    font-size: 40px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: color 0.3s;
}

.close:hover {
    color: red; 
}

.zoomable {
    cursor: pointer;
}