.intervention-container {
    display: flex;
    height: calc(100% - 120px);
    width: 100%;
    margin-top: 10px;
}

.form-side {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid #e0e0e0;
}

.map-side {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

.search-bar {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.required-field {
    color: #dc3545;
}

.submit-btn {
    margin-top: 30px;
}

#searchResults {
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}