/* Splošni slogi */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background-color: #f8f9fa;
    border-top: none;
}

.btn {
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
}

/* Responsive table */
.table-responsive {
    overflow-x: auto;
}

/* Form styling */
.form-control, .form-select {
    border-radius: 5px;
}

/* Custom colors */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

/* Print styles */
@media print {
    .navbar, .btn, .alert {
        display: none;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
}
/* Dodatni slogi za dashboard */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .btn {
    margin-top: auto;
}

.badge {
    font-size: 0.8em;
}

.table th {
    background-color: #f8f9fa;
    border-top: none;
}

.navbar-brand {
    font-weight: bold;
}

.container {
    max-width: 1200px;
}
/* Splošni slogi */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background-color: #495057;
    color: white;
    border-color: #495057;
}

.table-dark th {
    background-color: #495057;
    color: white;
}

.task-header {
    background-color: #495057;
    color: white;
    font-weight: bold;
}

.competitor-row:hover {
    background-color: #f8f9fa;
}

.btn {
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
}

/* Responsive table */
.table-responsive {
    overflow-x: auto;
}

/* Form styling */
.form-control, .form-select {
    border-radius: 5px;
}

/* Custom colors */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

/* Progress bar */
.progress {
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

/* Badge styles */
.badge {
    font-size: 0.8em;
}

/* Print styles */
@media print {
    .navbar, .btn, .alert {
        display: none;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
}

/* Additional styles for better readability */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.text-primary {
    color: #007bff !important;
}