/* css/style.css */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.schedule-table {
    width: 100%;
    margin-top: 1rem;
}

.schedule-table th {
    background-color: #f8f9fa;
    padding: 0.75rem;
}

.schedule-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}
.search-container {
    position: relative;
}

.stop-search {
    margin-bottom: 10px;
}

.stop-select {
    width: 100%;
    display: block !important;
    height: 200px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

select option {
    display: block !important;
}


.search-results {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    width: 20em; /* 20文字分の幅に設定 */
    z-index: 1000;
    display: none;
    margin-top: 2px; /* 検索ボックスとの間隔を調整 */
 }

.search-results div {
    padding: 8px 12px;
    cursor: pointer;
}

.search-results div:hover {
    background-color: #f8f9fa;
}
