html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    flex-direction: column;
}

.container {
    width: 98%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
}

#autocomplete {
    width: 98%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ui-menu-item-wrapper {
    padding: 8px 10px;
    cursor: pointer;
}

.ui-menu-item-wrapper:hover {
    background: #f5f5f5;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ui-state-focus {
    background: #e0e0e0 !important;
}

.table-container {
    width: 100%;
    max-width: 600px;
    overflow-x: auto;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.details-table th,
.details-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.details-table th {
    background-color: #f2f2f2;
    text-align: left;
}
