body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 40px auto;
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}
.form-header h1 {
    color: #0d6efd;
    font-weight: bold;
    font-size: 28px;
}
.form-header p {
    color: #6c757d;
    font-size: 16px;
}
.form-section {
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}
.form-section-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    color: #0d6efd;
}
.table-like-form .row {
    margin-bottom: 10px;
    align-items: center;
}
.document-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.document-item button {
    margin-left: 10px;
}
.autocomplete-container {
    position: relative;
}
.autocomplete-results {
    position: absolute;
    border: 1px solid #ced4da;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}
.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}
.autocomplete-item:hover {
    background-color: #f8f9fa;
}
.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}
.custom-file-button input[type=file] {
    margin-left: -2px !important;
}
.custom-file-button input[type=file]::-webkit-file-upload-button {
    display: none;
}
.custom-file-button input[type=file]::file-selector-button {
    display: none;
}
.custom-file-button label {
    color: #fff;
    cursor: pointer;
    height: 100%;
    padding: 10px 20px;
    border-radius: 0.3rem;
}
.file-list {
    margin-top: 15px;
}
.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 10px;
}