.psc-form-group {
    max-width: 400px;
    margin-bottom: 20px;
}
.psc-form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ced4da;
}
.psc-btn-primary {
    background-color: #B11E24;
    border: none;
    padding: 12px 24px;
    border-radius: 0.25rem;
}
.psc-btn-primary:hover {
    background-color: #3a3a3a;
}
.suggestions {
    text-align: left;
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    background-color: white;
    width: 100%;
    z-index: 1000;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f8f9fa;
}
.controls {
    position: relative;
}