/* Reset */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== Pasek informacyjny ===== */
.top-bar {
    width: 100%;
    padding: 12px 50px 12px 15px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    box-sizing: border-box;
    animation: slideDown 0.4s ease-out;
}

/* Kolory */
.top-bar.info {
    background-color: #007bff;
    color: #ffffff;
}

.top-bar.success {
    background-color: #28a745;
    color: #ffffff;
}

.top-bar.warning {
    background-color: #ffc107;
    color: #000000;
}

.top-bar.error {
    background-color: #dc3545;
    color: #ffffff;
}

/* Przycisk zamknięcia */
.top-bar .close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.8;
}

.top-bar .close-btn:hover {
    opacity: 1;
}

/* Animacja */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsywność */
@media (max-width: 600px) {
    .top-bar {
        font-size: 14px;
        padding: 10px 40px 10px 10px;
    }
}