/* Reset základných štýlov */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #bababa, #b8b8b8, #dedede);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header a navigácia */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffd700;
}

/* Formuláre */
form div {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007acc;
    outline: none;
}

button[type="submit"] {
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
}

/* Account Login Form*/
.login {
    background-color: #0482d4;
    padding: 8px;
}

.login:hover {
    background-color: #0d6b00 !important;
}

.logout {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #000 !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.logout:hover {
    background-color: #f3f3f3 !important;
}


/* Chybové a úspešné správy */
p[style*="color:red"] {
    font-size: 0.9rem;
    margin-top: 4px;
}

p[style*="color:green"] {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.btn-primary {
    background-color: #007acc;
    border-color: #007acc;
}

.btn-primary:hover {
    background-color: #005f99;
    border-color: #005f99;
}

.footer-color {
  background-color: #0f5879;
  color: white;
}

/* Account Profil */

.profile-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
}

.user-info p {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.admin-section h2 {
    margin-top: 40px;
}

table.table {
    border-radius: 8px;
    overflow: hidden;
}

.table-primary {
    background-color: #007acc !important; /* zachová farbu aj v Bootstrap */
    color: white !important;
}

.table-hover tbody tr:hover {
    background-color: #e1f0ff !important;
    cursor: default;
}

/* Zvýraznené pásiky v striped tabuľke */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e3f2fd; /* výraznejšia svetlo modrá */
}

/* Zvýraznenie pri hover na riadky */
.table-hover tbody tr:hover {
    background-color: #90caf9 !important; /* jasnejšia modrá */
    color: #000 !important; /* čierne písmo na hover */
    cursor: pointer;
}

/* Hlavička tabuľky s tmavšou modrou a bielym písmom */
.table thead.bg-primary {
    background-color: #0056b3 !important; /* tmavšia modrá farba */
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
}

/* Celkový štýl textu tabuľky */
.table {
    font-weight: 500;
    font-size: 1rem;
    color: #212529; /* tmavý text */
}




