.travel-visitor-folder-block{

}

/* Wi-Fi kortti */
.wifi-card {
    background: #e3f2fd;
    border: 2px dashed #90caf9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

 /* Tärkeät ajat -kortti */
.times-card {
    background: #fff3e0; /* Vaalea oranssi */
    border-left: 5px solid #ff9800;
    padding: 15px;
    border-radius: 8px;
}


/* Haitarivalikon (Accordion) tyylittely */
.card {
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card .btn {
    border-radius: .25rem;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid #f1f1f1;
    padding: 0;
}

.card-header .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
}

.card-header .btn-link:hover {
    text-decoration: none;
    background-color: #fcfcfc;
}

/* Ikoni oikeaan reunaan */
.card-header .btn-link::after {
    content: "\f107"; /* FontAwesome nuoli alas */
    font: normal normal bold 16px/1 FontAwesome;
    font-weight: 900;
    float: right;
    transition: transform 0.3s;
}

/* Käännä nuoli kun auki */
.card-header .btn-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Isot toimintopainikkeet */
.quick-btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px;
}