.fsrp-report-content {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    animation: fadeIn 2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
#fsrp-form {
    max-width: 400px;
    margin: 0 auto;
}
#fsrp-form label {
    display: block;
    margin-top: 10px;
}
#fsrp-form input[type="text"],
#fsrp-form input[type="date"],
#fsrp-form input[type="time"],
#fsrp-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}
#fsrp-form input[type="submit"] {
    margin-top: 15px;
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}
#fsrp-form input[type="submit"]:hover {
    background: #005177;
}

/* Style dla animowanych pasków postępu */
.progress-container {
    margin: 20px 0;
}
.progress-bar {
    margin-bottom: 15px;
}
.progress-title {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.progress {
    background: #ddd;
    border-radius: 3px;
    overflow: hidden;
    height: 20px;
}
.progress-fill {
    background: #0073aa;
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
}
.progress-percentage {
    display: block;
    text-align: right;
    margin-top: 5px;
    font-size: 0.9em;
    color: #333;
}

/* Style dla animowanej siatki Bagua */
.bagua-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 300px;
    margin: 20px auto;
}
.bagua-cell {
    background: #0073aa;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    opacity: 0;
    animation: bagua-fade-in 1s forwards;
}
.bagua-center {
    background: #005177;
}
@keyframes bagua-fade-in {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
