body {
    background: #212529;
    color: white;
}

/* تنسيق الشريط */
.progress {
    background: #f3f3f3;
    height: 10px;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: #4caf50;
    width: 0%;
    text-align: center;
    color: white;
    line-height: 10px;
    font-weight: bold;
    transition: width 0.5s ease;
}

/* عند اكتمال الرفع */
.progress-bar.completed {
    background: #81c784;
}

#container {
    text-align: center;
    margin-top: 20px;
}

.link-container .link-field button {
    background-color: #4e595d;
    color: #f1f1f1;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.upload-description {
    margin-top: 20px;
}

.link-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.link-field input[type="text"] {
    width: 100%;
    background-color: #4e595d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.form-group {
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
}

/* Upload button styles */
.upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4e595d;
    color: #f1f1f1;
    padding: 14px 24px;
    border-radius: 5px;
    cursor: pointer;
    border: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
}

.upload-button:hover {
    background-color: #3e4a4a;
}

.upload-icon {
    margin-right: 5px;
}

#downloadUrl {
    display: none;
}

#copyUrlBtn {
    color: #f1f1f1;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}
