body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

h1 {
    color: #343a40;
    font-weight: bold;
}

h2 {
    color: #495057;
    margin-bottom: 20px;
}

.table th {
    background-color: #e9ecef;
    border-top: none;
    font-weight: bold;
}

.table td {
    vertical-align: middle;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.form-select, .form-control {
    border-radius: 5px;
}

#clientesTable {
    margin-bottom: 0;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.suggestions-list .suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.suggestions-list .suggestion-item:hover,
.suggestions-list .suggestion-item.active {
    background-color: #f8f9fa;
}

.suggestions-list .suggestion-item:last-child {
    border-bottom: none;
}

.position-relative {
    position: relative;
}