/* 
   FIXOKNA - Panel Serwisowy 
   Style bazowe spójne z Kreatorem Ofert 
*/

:root {
    --brand: #00aeef;
    --brand-hover: #0092c9;
    --accent: #FFDE15;
    --text-main: #494949;
    --bg-light: #f9fafb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --card-border: 1px solid #f1f1f1;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
}

.font-roboto { font-family: 'Roboto', sans-serif; }
.font-lato { font-family: 'Lato', sans-serif; }

/* Karta kafelkowa FIXOKNA */
.fix-card {
    background: #ffffff;
    border: var(--card-border);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1.5rem;
    position: relative;
}

.fix-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.fix-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
}

/* Przycisk typu Pill */
.btn-pill {
    background-color: var(--brand);
    color: #fff;
    border-radius: 9999px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pill:hover {
    background-color: var(--brand-hover);
    box-shadow: 0 4px 10px rgba(0, 174, 239, 0.2);
}

/* Menu Header */
.nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--brand);
}

/* Avatar profile circle */
/* Animacje dla kroków formularza */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}
