/* Plik: assets/style.css */

body {
    padding-bottom: 70px; /* Wysokość stopki */
}

#result-container {
    white-space: pre-wrap; /* Zachowuje formatowanie i zawija wiersze */
    word-wrap: break-word;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9998;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-error {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
    padding: 2rem;
}
.modal-error-box {
    background: #f8d7da;
    color: #721c24;
    padding: 2rem 3rem;
    border: 1px solid #f5c6cb;
    border-radius: 0.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.blurred-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}