.search-container {
    display: flex;
    margin-top: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    width: 100%;
}

.search-box-container {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.search-box {
    display: flex;
    width: 80%;
    max-width: 600px;
}

.search-box input {
    min-width: 0;
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-box button {
    padding: 0 20px;
    background-color: var(--purple);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s;
}

.search-box button:hover {
    background-color: #9B7AEE;
}

.empty-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-top: 30px;
}