/* Style dla formularza przesyłania plików */
.cuar-file-uploader {
    max-width: 800px;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cuar-form-row {
    margin-bottom: 15px;
}

.cuar-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.cuar-form-row select,
.cuar-form-row input[type="file"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.description {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.cuar-submit-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cuar-submit-button:hover {
    background: #005d8a;
}

#cuar-upload-messages {
    margin-top: 15px;
}

.cuar-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.cuar-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.cuar-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

#cuar-upload-progress {
    margin-top: 15px;
    background-color: #f5f5f5;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
}

#cuar-upload-progress .progress-bar {
    height: 100%;
    background-color: #0073aa;
    width: 0%;
    transition: width 0.3s;
}

#cuar-upload-progress .progress-text {
    text-align: center;
    margin-top: -20px;
    position: relative;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

/* Style dla listy plików */
.cuar-uploaded-files {
    margin-top: 30px;
}

.cuar-year {
    margin-bottom: 20px;
}

.cuar-month {
    margin-left: 20px;
    margin-bottom: 15px;
}

.cuar-files-list {
    margin-left: 20px;
    list-style-type: none;
    padding-left: 0;
}

.cuar-files-list li {
    margin-bottom: 5px;
}

.file-info {
    color: #777;
    font-size: 0.9em;
}