body {
    background-color: #f8f9fa;
}

.card-header {
    background-color: #007bff;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-body {
    padding: 2rem;
}

.list-group-item {
    border: none;
    border-bottom: 1.5px solid #dee2e6;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.mb-0 {
    text-align: center;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    max-height: 200px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-in-out;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.autocomplete-items div:hover {
    background-color: #f1f1f1;
}

.autocomplete-items div.active {
    background-color: #007bff;
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
}

.footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f8f9fa;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e4e4e4;
}

.footer p {
    margin: 0;
    color: #6c757d;
}

.img {
    color: white;
}
