/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Černé pozadí */
    color: white; /* Bílý text */
}

.app-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e; /* Tmavě šedá, aby byl kontrast viditelný */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    text-align: center;
    color: white; /* Bílé písmo */
}

header {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

h1 {
    color: #D3FC23; /* Žluto-zelená */
    margin-bottom: 0;
}

h2 {
    color: #D3FC23; /* Žluto-zelená */
    margin-bottom: 20px;
    font-size: 22px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: white; /* Bílá barva pro popisky */
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #D3FC23; /* Žluto-zelená */
    border-radius: 4px;
    background-color: #333333; /* Tmavé pole */
    color: white;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #D3FC23; /* Žluto-zelená */
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px; /* Přidáme mezery mezi tlačítky */
}

button i {
    margin-right: 8px;
}

button:hover {
    background-color: #c3ea1f; /* Trochu tmavší odstín žluto-zelené */
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

footer a {
    color: white; /* Bílá barva odkazů */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.account-info {
    text-align: left;
    margin-bottom: 20px;
}

.account-info p {
    color: #D3FC23; /* Žluto-zelená */
    font-size: 18px;
}

/* Změníme rozložení tlačítek na menších obrazovkách */
.actions {
    display: flex;
    flex-direction: column;
}

.actions button {
    width: 100%; /* Tlačítka budou přes celou šířku obrazovky */
    font-size: 14px;
    margin-bottom: 10px;
}

/* QR Scanner */
#qr-view {
    text-align: center;
}

#qr-video {
    width: 100%;
    height: auto;
}

#qr-result {
    margin-top: 10px;
    color: #D3FC23; /* Žluto-zelená */
}
