/*upload hamza*/
/* تنسيقات CSS للفورم */
.upload-container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.upload-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.file-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.file-input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.progress-wrapper {
    width: 100%;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 20px;
    background-color: #4caf50;
    width: 0%;
    color: white;
    text-align: center;
    line-height: 20px;
    transition: width 0.4s ease; /* تأثير على العرض */
}

.status {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #555;
}