html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background: linear-gradient(
        to bottom,
        #1e1e2f 0%,
        #240046 50%,
        #3a0ca3 100%
    );

    min-height: 100vh;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1e1e2f;
    padding: 10px 20px;
    color: white;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px #a855f7;
}

.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.tab:hover {
    background-color: #33334d;
    border-radius: 4px;
}

.tab.active {
    background-color: #4c4cff;
    border-radius: 4px;
}

.search-container {
    display: flex;
    gap: 5px;
}

.search-container input {
    padding: 6px;
    border-radius: 4px;
    border: none;
}

.search-container button {
    padding: 6px 10px;
    border: none;
    background-color: #4c4cff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.search-container button:hover {
    background-color: #3a3aff;
}