@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
    margin: 0;
    padding: 20px;
    font-family: Roboto Mono, "monospace";
    min-height: 100vh;
    position: relative;
}

#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body > * {
    position: relative;
    z-index: 1;
}

#buttons button {
    padding: 12px 20px;
    margin: 3px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: Roboto Mono, "monospace";
    outline: none;
    transition: all 0.3s;
}

#buttons button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

h1, h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#search-container {
    margin: 20px 0;
}

#searchBar {
    padding: 12px 20px;
    width: 100%;
    max-width: 500px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: Roboto Mono, "monospace";
    outline: none;
    transition: all 0.3s;
}

#searchBar::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#searchBar:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

#stopBtn {
    padding: 12px 20px;
    max-width: 500px;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid rgba(255, 75, 75, 0.5);
    background-color: rgba(255, 75, 75, 0.35);
    color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: Roboto Mono, "monospace";
    outline: none;
    transition: all 0.3s;
}

#stopBtn:hover {
    border-color: rgba(255, 75, 75, 0.8);
    background-color: rgba(255, 75, 75, 0.45);
    box-shadow: 0 0 20px rgba(255, 75, 75, 0.5);
}

/* Scrollable buttons container */
#buttons {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

/* Custom scrollbar styling */
#buttons::-webkit-scrollbar {
    width: 8px;
}

#buttons::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#buttons::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#buttons::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
