body {
    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
    padding-bottom: 80px;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
}

#pending-ideas-container {
    max-width: 800px;
    margin: 0 auto;
}

.idea-box {
    background-color: #1e1e1e;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

button {
    padding: 8px 12px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e1e1e;
    padding: 8px 10px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.bottom-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.bottom-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.bottom-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}
