.service-container {
    margin-top: 18px;
    margin-bottom: 18px;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map_canvas {
    height: 100% !important;
    width: 100%;
}

.search-panel {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.result-list-wrapper {
    height: 600px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
}

.branch-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    border-left: 5px solid #ddd;
}

.branch-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left-color: #d9534f;
}

.branch-card.active {
    border-left-color: #d9534f;
    background: #fff5f5;
}

.branch-card .title {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.branch-card .detail p {
    margin-bottom: 3px;
    font-size: 0.9em;
    color: #666;
}

.select2-container--default .select2-selection--single {
    height: 45px;
    line-height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 600px;
        margin-bottom: 18px;
        margin-top: 18px;
    }

    .result-list-wrapper {
        max-height: none;
    }
}