/* Vispārējie stili */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Topbara stilizācija - caurspīdīgs fons */
.topbar {
    background-color: transparent; /* Caurspīdīgs fons */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Neliels ēnojums */
}

/* Galvenās pogas topbarā */
.header-button {
    background-color: #333; /* Melns fons */
    border: none; /* Bez kontūras */
    color: white; /* Balta teksta krāsa */
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px; /* Noapaļotas malas */
}

.header-button:hover {
    background-color: #444; /* Tumšāka melna krāsa, kad pārvieto peli */
    transform: scale(1.05); /* Mazs palielinājuma efekts */
}

/* Pievienojam nelielu efektu klikšķiem */
.header-button:active {
    transform: scale(1.02);
}

.header-button:focus {
    outline: none; /* Izslēdz fokusu */
}

/* Dinamiskās pogas atkarībā no lietotāja statusa */
.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Pieslēgšanās un reģistrēšanās pogas */
#login-button, #register-button {
    background-color: #333; /* Melns fons */
    border: none; /* Bez kontūras */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

#login-button:hover, #register-button:hover {
    background-color: #444; /* Tumšāka melna krāsa, kad pārvieto peli */
}

/* Autentifikācijas poga, kad lietotājs ir pieteicies */
.auth-buttons button {
    background-color: #333; /* Melns fons */
    border: none; /* Bez kontūras */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.auth-buttons button:hover {
    background-color: #444; /* Tumšāka melna krāsa, kad pārvieto peli */
}

/* Ikona/Attēls pogā */
.auth-buttons button img {
    margin-right: 10px;
}

/* Pamatteksta stili */
.content {
    margin-top: 80px; /* Nodrošina attālumu zem topbara */
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #333;
}

p {
    font-size: 1.2rem;
    color: #666;
}
