/* STILI GENERALI */
.slidecontainer {
    width: 70%;
}

.slider {
    -webkit-appearance: none;
    width: 70%;
    height: 45px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 45px;
    background: #04AA6D;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 45px;
    background: #04AA6D;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.modal-lg {
    max-width: 500px !important;
}   

.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.button2 { background-color: #008CBA; } 
.button3 { background-color: #f44336; } 
.button4 { background-color: #e7e7e7; color: black; } 
.button5 { background-color: #555555; }

input[type=text], input[type=email] {
    padding: 0;
    height: 45px;
    position: relative;
    left: 0;
    outline: none;
    text-align: center;
    border: 2px solid #cdcdcd;
    border-radius: 6px;
    background-color: white;
    font-size: 18px;
}

/* CAMPO DA GIOCO VOLLEY */
#container {
    width: 500px;
    height: 500px;
    background-color: slategray;
    overflow: hidden;
    background-image: url("campo/campopallavolo-500.png");
    position: relative; 
    margin: 2em auto; 
    font-size: 25px;
    text-align: center;
    font-family: Arial, sans-serif;
    user-select: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.item {
    border-radius: 30%;
    touch-action: none;
    user-select: none;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.one, .two, .three, .four, .five, .six {
    width: 70px;
    height: 70px;
    background-color: rgba(207, 207, 196, 0.5);
    border: 1.5px solid rgba(0, 0, 0, .7);
    position: absolute;
    top: 0;
    left: 0;
}

.mr {
    width: 160px;
    height: 50px;
    background-color: rgba(240, 183, 24, 0.7);
    border: 3px solid rgba(136, 136, 136, .5);
    position: absolute;
    top: 0;
    left: 0;	
}

.logo {
    width: 95px;
    height: 95px;
    background-color: rgba(52,93,240, 0.7);
    border: 3px solid rgba(136, 136, 136, .5);
    position: absolute;
    top: 0;
    left: 0;	
}

.item:active { opacity: .75; }
.item:hover { cursor: pointer; }

/* SEZIONE FAQ SEO */
.faq-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.faq-title { color: #008CBA; font-weight: bold; margin-bottom: 20px; }
.faq-item { margin-bottom: 15px; text-align: left; }
.faq-question { font-weight: bold; font-size: 18px; color: #333; }
.faq-answer { font-size: 16px; color: #666; margin-top: 5px; }