@charset "UTF-8";

html, body, .container-fluid, .row-height {
    height: 100%;
    margin: 0;
}
.content-left {
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 40px; /* Spazio per visualizzare il footer quando si scorre */
}
.map-right {
    height: 100vh;
    position: sticky;
    top: 0;
}
#map {
    height: 100%;
    width: 100%;
}

header {
    background-color: black !important;
}

#full-slider-wrapper {
    position: relative;
    top: 60px;
}

.margin_120_30 {
    padding-top:120px;
    padding-bottom:30px;
}

/* Stili per la vista lista delle esperienze turistiche */
/* Schermi ampi (desktop) */
@media (min-width: 1200px) {
    .strip_list .desc {
        padding-top: 35px;
        padding-bottom: 0px;
    }
}

/* Schermi intermedi (tablet) */
@media (min-width: 768px) and (max-width: 1199px) {
    .strip_list .desc {
        padding-top: 10px;
        padding-bottom: 0px;
    }
}

/* Dispositivi mobili */
@media (max-width: 767px) {
    .strip_list .desc {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.strip_list .desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

/* Stili personalizzati per il carosello */

/* Centrare i pallini di navigazione */
#experience_gallery .owl-dots {
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

#experience_gallery .owl-nav button.owl-prev {
    left: 10px;
}

#experience_gallery .owl-nav button.owl-next {
    right: 10px;
}

#experience_gallery .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Miglioramento stile pallini */
#experience_gallery .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #D6D6D6;
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
}

#experience_gallery .owl-dots .owl-dot.active span,
#experience_gallery .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Wrapper per immagini di sfondo in proporzione originale */
.parallax_wrapper {
    position: relative;
    overflow: hidden;
}
.parallax_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.datepicker .available {
    background: #8dc63f !important;
    color: white !important;
}
.calendar_wrapper {
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
#experience_calendar {
    width: 100%;
}
.date-info-box {
    animation: fadeIn 0.3s ease-in-out;
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.date-info-content h4 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}
.date-info-content p {
    margin: 10px 0;
    color: #666;
}
.available-times {
    list-style-type: disc;
    padding-left: 20px;
    margin: 5px 0;
}
.available-times li {
    padding: 3px 0;
    color: #666;
}
.close-info {
    margin-top: 10px;
    background: #8dc63f;
    border: none;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
}
.close-info:hover {
    background: #7ab32d;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stili responsive per il calendario */
@media (max-width: 991px) {
    .calendar_wrapper {
        width: 100%;
        padding: 10px;
    }
    #experience_calendar {
        width: 100% !important;
    }
    .datepicker {
        width: 100% !important;
    }
    .datepicker table {
        width: 100% !important;
    }
    .datepicker table tr td,
    .datepicker table tr th {
        padding: 8px !important;
    }
}

@media (max-width: 767px) {
    .calendar_wrapper {
        padding: 5px;
    }
    .datepicker table tr td,
    .datepicker table tr th {
        padding: 6px !important;
        font-size: 14px;
    }
    .date-info-box {
        margin-top: 15px;
        padding: 15px;
    }
}

.carousel .short_info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    line-height: 1.4;
    max-height: calc(1.4em * 3.6);
    height: calc(1.4em * 3.6);
    word-wrap: break-word;
    white-space: normal;
    padding-bottom: 2px;
}

/* Stili per limitare il testo a una riga */
.single-line-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.single-line-category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

/* Foglio di stile per le notifiche */
.notification {
    position: fixed;
    top: 120px; /* Posizionato più in basso per evitare di essere coperto dall'header */
    right: 20px;
    max-width: 300px;
    padding: 15px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #F44336;
}

.notification.warning {
    background-color: #FF9800;
}

.notification.info {
    background-color: #2196F3;
}

/* Custom Ribbon Styles */
.ribbon-custom {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: left;
}

.ribbon-custom span {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon-custom span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #79A70A;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}

.ribbon-custom span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #79A70A;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}

/* Top ribbon variant */
.ribbon-custom.top span {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: -21px;
    left: auto;
}

.ribbon-custom.top span::before {
    border-left: 3px solid transparent;
    border-right: 3px solid #79A70A;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}

.ribbon-custom.top span::after {
    border-left: 3px solid #79A70A;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}

/* Event Ribbon Styles */
.ribbon-event {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: left;
}

.ribbon-event span {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #d8a629;
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon-event span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #d8a629;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d8a629;
}

.ribbon-event span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #d8a629;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d8a629;
}

/* Top ribbon variant for events */
.ribbon-event.top span {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: -21px;
    left: auto;
}

.ribbon-event.top span::before {
    border-left: 3px solid transparent;
    border-right: 3px solid #d8a629;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d8a629;
}

.ribbon-event.top span::after {
    border-left: 3px solid #d8a629;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d8a629;
}

/* Strip List View Button Styles */
.strip_list .desc p a.button.small {
    background-color: #79A70A;
    color: white;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.strip_list .desc p a.button.small:hover {
    background-color: #6b9409;
    color: white;
    text-decoration: none;
}

/* Identity Ribbon Styles */
.ribbon-restaurant {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: left;
}

.ribbon-restaurant span {
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #fb7a4a;
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon-restaurant span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #fb7a4a;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #fb7a4a;
}

.ribbon-restaurant span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #fb7a4a;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #fb7a4a;
}

.ribbon-hotel {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: left;
}

.ribbon-hotel span {
    font-size: 9px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #574331;
    position: absolute;
    top: 19px;
    left: -21px;
}

.ribbon-hotel span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #574331;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #574331;
}

.ribbon-hotel span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #574331;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #574331;
}

/* Top ribbon variants */
.ribbon-restaurant.top span,
.ribbon-hotel.top span {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    right: -21px;
    left: auto;
}

.ribbon-restaurant.top span::before,
.ribbon-hotel.top span::before {
    border-left: 3px solid transparent;
    border-right: 3px solid #fb7a4a;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #fb7a4a;
}

.ribbon-restaurant.top span::after,
.ribbon-hotel.top span::after {
    border-left: 3px solid #fb7a4a;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #fb7a4a;
}

/* Strip List View Button Styles for Identities */
.strip_list .desc p a.button.small.restaurant {
    background-color: #fb7a4a;
    color: white;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.strip_list .desc p a.button.small.hotel {
    background-color: #574331;
    color: white;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.strip_list .desc p a.button.small.restaurant:hover {
    background-color: #e66a3a;
    color: white;
    text-decoration: none;
}

.strip_list .desc p a.button.small.hotel:hover {
    background-color: #463322;
    color: white;
    text-decoration: none;
}

/* Stili per il logo nella sidebar */
.sidebar-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Stili per l'elenco degli indirizzi */
.address-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.address-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.address-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

/* Se c'è solo un indirizzo, nascondi il bullet point */
.address-list li:only-child:before {
    display: none;
}

.box_info_sidebar {
    margin-top: 20px;
    background-color: #fff;
}

.countdown {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 1.2em;
    font-weight: bold;
    color: #e74e3d;
}

.countdown-label {
    font-size: 0.8em;
    color: #666;
}

.social-networks {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-networks .social-icon {
    font-size: 24px;
    color: #666;
    transition: color 0.3s ease;
}

.social-networks .social-icon:hover {
    color: #e74e3d;
}

.social-networks .icon-facebook:hover {
    color: #3b5998;
}

.social-networks .icon-instagram:hover {
    color: #e1306c;
}

.social-networks .icon-twitter:hover {
    color: #1da1f2;
}

.social-networks .icon-youtube:hover {
    color: #ff0000;
}

.price-range {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 120px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    white-space: nowrap;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
}

.active-euros {
    color: #e74e3d;
}

.inactive-euros {
    color: #ddd;
}

.price-range, .hotel-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 120px;
}

.price-label, .rating-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    white-space: nowrap;
}

.price-value, .rating-value {
    font-size: 24px;
    font-weight: bold;
}

.active-euros {
    color: #e74e3d;
}

.inactive-euros {
    color: #ddd;
}

.active-stars {
    color: #f1c40f;
}

.inactive-stars {
    color: #ddd;
}

/* Stili per il form di registrazione */
.box_login {
    margin-bottom: 30px;
}

.form-group .is-invalid {
    border-color: #dc3545;
}

#register_message, #login_message {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.button_login {
    transition: all 0.3s ease;
}

.button_login:hover {
    opacity: 0.8;
}

/* Checkbox per ricordami */
.checkbox-inline {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
}

/* Campo password con forza visibile */
#pass-info {
    width: 100%;
    height: 5px;
    margin-bottom: 15px;
    border-radius: 3px;
    background: #eee;
    position: relative;
}

#pass-info.weak {
    background: #ff9191;
}

#pass-info.good {
    background: #ffd891;
}

#pass-info.strong {
    background: #c3ff91;
}

/* Tooltip per la forza della password */
#pass-info:after {
    content: attr(data-strength);
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 12px;
}

#pass-info.weak:after {
    color: #ff5252;
}

#pass-info.good:after {
    color: #ffa726;
}

#pass-info.strong:after {
    color: #8bc34a;
}

/* Stili per la pagina di conferma account */
.success_box, .error_box, .info_box, .loading_box {
    padding: 25px 25px 25px 65px;
    margin-bottom: 25px;
    border-radius: 5px;
    position: relative;
}

.success_box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.error_box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.info_box {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

.loading_box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
}

.success_box i, .error_box i, .info_box i, .loading_box i {
    font-size: 40px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animazione di caricamento */
@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.loading_box i.icon_loading {
    animation: spin 2s linear infinite;
}

/* Stile per i pulsanti nella pagina di conferma */
.btn_1 {
    background-color: #79A70A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn_1:hover {
    background-color: #6b9409;
    color: white;
    text-decoration: none;
}

/* Responsive per la pagina di conferma */
@media (max-width: 767px) {
    .success_box, .error_box, .info_box, .loading_box {
        padding: 20px 20px 20px 60px;
    }
    
    .success_box i, .error_box i, .info_box i, .loading_box i {
        font-size: 30px;
    }
}

/* Stili per i pulsanti wishlist */
.wishlist-btn {
    cursor: pointer;
}

.wishlist-btn .tooltip-item i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.wishlist-btn.in-wishlist .tooltip-item i {
    color: #ffc107; /* Colore oro per i preferiti attivi */
}

.wishlist-btn:not(.in-wishlist) .tooltip-item i:hover {
    color: #ffc107; /* Effetto hover anche sulla versione non attiva */
}

/* Animazione per l'aggiunta ai preferiti */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.wishlist-btn.in-wishlist .tooltip-item i {
    animation: heartPulse 0.4s ease-in-out;
}

/* Wishlist icon styling */
.wishlist .tooltip_styled {
    position: relative;
    display: block;
}

/* Default state - empty heart with white color */
.wishlist .tooltip_styled:before {
    content: "\e97c"; /* Empty heart icon */
    font-family: "fontello";
    font-size: 32px;
    color: #fff;
}

/* When item is in wishlist - filled heart with gold color */
.wishlist .tooltip_styled.in-wishlist:before {
    content: "\e97b"; /* Filled heart icon */
    color: #ffc107; /* Gold color */
}

/* Animation for wishlist toggle */
.wishlist .tooltip_styled {
    transition: all 0.3s ease;
}

.wishlist .tooltip_styled:hover {
    transform: scale(1.2);
}

/* Stili per il pulsante preferiti nella sidebar dettaglio */
.sidebar-wishlist-btn {
    cursor: pointer;
}

.sidebar-wishlist-btn i {
    transition: all 0.3s ease;
    margin-right: 10px; /* Spazio tra l'icona e il testo */
}

/* Stile per l'icona cuore vuoto */
.sidebar-wishlist-btn .icon-heart-empty {
    color: #fff; /* Colore bianco per l'icona vuota */
}

/* Stile per l'icona cuore pieno */
.sidebar-wishlist-btn .icon-heart {
    color: #ffc107; /* Colore oro per l'icona piena */
}

.sidebar-wishlist-btn:hover i {
    color: #ffc107; /* Effetto hover - colore oro */
    transform: scale(1.2);
}

/* Stile specifico per il pulsante nel menu sidebar */
#tools_2 li a.sidebar-wishlist-btn.in-wishlist {
    background-color: rgba(255, 193, 7, 0.1); /* Sfondo leggermente dorato quando è nei preferiti */
}

#tools_2 li a.sidebar-wishlist-btn:hover {
    background-color: rgba(255, 193, 7, 0.1); /* Sfondo leggermente dorato al passaggio del mouse */
}

/* Stili per i messaggi di form contatti */
.message_box {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.success_message_box {
    background-color: #dff0d8;
    border: 1px solid #d0e9c6;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.error_message_box {
    background-color: #f2dede;
    border: 1px solid #ebcccc;
    color: #a94442;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.notice_message {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    animation: fadeIn 0.5s ease-in-out;
}

.error_message {
    color: #a94442;
    font-weight: 600;
    margin-bottom: 4px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animazione per i messaggi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Icone per i messaggi */
.success_message_box:before, 
.error_message_box:before,
.notice_message:before {
    font-family: 'ElegantIcons';
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.success_message_box:before {
    content: "\52"; /* Icona di spunta */
}

.error_message_box:before {
    content: "\e051"; /* Icona di errore */
}

.notice_message:before {
    content: "\e031"; /* Icona di informazione */
}

/* Stili per i campi con errore */
.form-control.error {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.form-control.error:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}

/* Stili per la pagina di ricerca */
.search-form-container {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.search-form-container .input-group {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-form-container .form-control {
    height: 45px;
    font-size: 16px;
}

.search-form-container .btn-primary {
    background-color: #6cbb23;
    border-color: #6cbb23;
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
}

.search-form-container .btn-primary:hover {
    background-color: #5a9c1e;
    border-color: #5a9c1e;
}

/* Evidenziazione termini di ricerca */
mark {
    background-color: #ffeb3b;
    padding: 0 2px;
    border-radius: 2px;
}

/* Bottone "Vedi tutti i risultati" */
.btn_1 {
    margin-top: 20px;
}

/* Adattamento responsivo */
@media (max-width: 767px) {
    .search-form-container {
        padding: 15px;
    }
    
    .search-form-container .input-group {
        max-width: 100%;
    }
}