/* Reset osnovnog ponašanja browsera */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Globalna podešavanja */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #101218;
    color: #f4f4f4;
}

/* Centrirana stranica za login/register */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

/* Kontejner za formu */
.form-container {
    background-color: #1a1c20;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Naslovi */
h1 {
    color: #00ffd5;
    margin-bottom: 20px;
}

/* Polja za unos */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    background-color: #2c2f36;
    color: white;
    border-radius: 5px;
    font-size: 14px;
}

/* Dugmad */
button {
    width: 100%;
    padding: 12px;
    background-color: #00ffd5;
    color: #101218;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
}

button:hover {
    background-color: #00bfa5;
}

/* Poruke */
.message {
    background-color: #2a2e35;
    padding: 10px;
    border: 1px solid #00ffd5;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #00ffd5;
}

/* Linkovi */
a {
    color: #00ffd5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 500px) {
    .form-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    button, input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
        font-size: 14px;
    }
}
/* Tabela - univerzalna stilizacija */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1c20;
    border: 1px solid #2c2f36;
    margin: 20px 0;
    font-size: 14px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #2c2f36;
}

table th {
    background-color: #2c2f36;
    color: #00ffd5;
}

/* Polje za poruku (textarea) */
textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    background-color: #2c2f36;
    color: #f4f4f4;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    resize: vertical;
}

/* Pretraga korisnika i poruka */
.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.search-form input[type="text"] {
    padding: 10px;
    width: 250px;
    background-color: #2c2f36;
    color: white;
    border: none;
    border-radius: 5px;
}

/* Paginacija */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    padding: 8px 16px;
    background-color: #2c2f36;
    color: #00ffd5;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a.active,
.pagination a:hover {
    background-color: #00ffd5;
    color: #101218;
}
