    .button { background:#007bff; color:white; padding:5px 10px; text-decoration:none; border-radius:3px; }
    .button-small { font-size: 0.8em; }
    .button-danger { background:#dc3545; }

.search-box {
    margin-bottom: 20px;
}
.search-box input {
    padding: 5px;
    width: 300px;
}
.search-box button {
    padding: 5px 10px;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #ddd;
    background: white;
    z-index: 99;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
}

.autocomplete-items div:hover {
    background-color: #f1f1f1;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.loading-overlay img {
    width: 30px;
    height: 30px;
}
