/* Styles pour l'interface d'upload */
#pc-uploader-interface {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#pc-photo-upload-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#pc-photo-upload-form input[type="text"],
#pc-photo-upload-form input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.pc-submit-button {
    background-color: #007cba;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.pc-submit-button:hover:not(:disabled) {
    background-color: #005f7c;
}

.pc-submit-button:disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
}

/* Messages */
#pc-upload-message p {
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
}

.pc-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pc-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pc-info, .pc-rules {
    padding: 8px;
    background-color: #e2f2ff;
    color: #004085;
    border: 1px solid #b8daff;
    border-radius: 3px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* Barre de progression */
#pc-upload-progress {
    margin-top: 10px;
}
#file-progress {
    width: 100%;
    height: 15px;
}