html {
    overflow-y: scroll;
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    /* Prevent iOS zooming */
}

body {
   display:flex; 
   justify-content:center; 
   align-items:center; 
   height:100vh; 
   background:#1a1a1a; margin:0; 
   font-family:sans-serif;
}

p a {
    color: #2ecc71;
    text-decoration: none;
}
p a:hover {
    text-decoration: underline;
}

/* INLOGGEN */
.container{
    width:90%; 
    /* width: 100%; */
    max-width:600px; 
    text-align:center; 
    background:#333; 
    padding:30px; 
    border-radius:10px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.5); */
    color: white; /* Tekstkleur voor "Ingelogd als..." */

}
h1{
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 30px 0;
}

.pass {
    width:100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    background: #222;
    color: white;
}

.enter {
    
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* ALS INGELOGD */

.grid {
    display: flex;
    flex-wrap: wrap; /* Belangrijk: zorgt voor het onder elkaar springen */
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    width: 130px; /* Iets breder voor langere woorden zoals Commodities */
    background: #444; /* Donkere knop */
    color: #2ecc71; /* Groene tekst */
    border: 2px solid #2ecc71;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn:hover {
    background: #2ecc71;
    color: #1a1a1a;
}

.disabled {
    opacity: 0.2;
    pointer-events: none;
    border-color: #666;
    color: #666;
    background: #222;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #fafafa;
    border-color: #ccc;
}

.error {
    color: red;
}