/* Opšti stilovi za admin panel */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1, h2 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #ecf0f1;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Dugmad */
a.button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    margin: 5px 0;
    text-align: center;
}

a.button:hover {
    background-color: #2980b9;
}

/* Stil za tabele */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
}

table th {
    background-color: #3498db;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

/* Stilovi za sekciju sa sadržajem */
.content-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-item h3 {
    margin-top: 0;
}

.content-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Odjava dugme */
a.logout {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

a.logout:hover {
    background-color: #c0392b;
}


/* Stil za formu */
form {
    background-color: #ecf0f1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

form input[type="submit"],
form button {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover,
form button:hover {
    background-color: #2980b9;
}

form .form-group {
    margin-bottom: 15px;
}

form .form-group:last-child {
    margin-bottom: 0;
}


input::-webkit-credentials-auto-fill-button {
    display: none;
}



