body {
    background-color: #121212;
    color: #e0e0e0;
    position: relative;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: -1;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2rem;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: -0.5rem;
}

h5 {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.3rem;
}

#main-container {
    background-color: transparent;
    border-radius: 8px;
    padding: 20px;
}

#setup-container {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #29292933;
    padding: 20px;
    border-radius: 8px;
}

.btn {
    background-color: #6200ea;
    color: #e0e0e0;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #5200ea;
}

input[type="text"] {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #bbbbbb;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    outline: none;
}

input[type="text"]::placeholder {
    color: #bbbbbb;
}

input[type="text"]:focus {
    background-color: transparent;
    outline: none;
    color: #bbbbbb;
    border-color: #5200ea;
    box-shadow: 0 0 5px #5200ea;
}

.seed-display-dark {
    background-color: #292929;
    color: #e0e0e0;
    border-color: #444;
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
}

.card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: #29292933;
    color: #e0e0e0;
    height: 15rem;
}

.card button {
    position: absolute;
    bottom: 1rem;
}

.card-title {
    color: #ffffff;
}

.card-text {
    color: #bbbbbb;
}

.container-list {
    margin-top: 2rem;
    padding-right: 20%;
    padding-left: 20%;
}

.list-group-item {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    color: #bbbbbb99;
    text-align: center;
}

.iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
}
