/* Portal Klienta - Style */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f8fa;
    color: #333;
}

/* Navbar Customization */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Client Info Card */
.client-info {
    transition: all 0.3s ease;
}

.client-info:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.client-info .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Dashboard Sections */
.dashboard-section {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}

.dashboard-section:hover {

}

.dashboard-section .card-header {
    background-color: var(--primary-color);
    font-weight: 800;
    color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(13, 110, 253, 0.2);
}

.dashboard-section .card-header h3 {
    font-size: 18px;
}

/* Tables */
.table {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table thead {
    background-color: rgba(13, 110, 253, 0.05);
}

.table th {
    font-weight: 600;
    border-bottom: 2px solid rgba(13, 110, 253, 0.2);
}

.table td {
    vertical-align: middle;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Login Box */
.login-box {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.login-box h3 {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeIn 0.5s ease-out;
}
