.kw-warehouses-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: inherit;
}
.kw-select-wrapper {
    margin-bottom: 20px;
}
.kw-select-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
}
.kw-select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.kw-warehouse-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kw-info-panel {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.kw-info-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}
.kw-info-item:last-child {
    margin-bottom: 0;
}
.kw-info-item strong {
    display: inline-block;
    min-width: 100px;
    color: #333;
}
.kw-info-item a {
    text-decoration: none;
    color: #9B0000;
    font-weight: 500;
}
.kw-info-item a:hover {
    text-decoration: underline;
}
.kw-map-panel {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.kw-map-panel iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (min-width: 768px) {
    .kw-warehouse-details {
        flex-direction: row;
    }
    .kw-info-panel {
        flex: 1;
    }
    .kw-map-panel {
        flex: 2;
    }
}