.music-uploader-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Tahoma, Arial, sans-serif;
    direction: rtl;
}

.upload-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
}

.music-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Tahoma, Arial, sans-serif;
    background: #0073aa;
    color: #fff;
}

.music-btn:hover {
    background: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.music-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.music-btn-primary {
    background: #2271b1;
}

.music-btn-primary:hover {
    background: #135e96;
}

.music-btn-success {
    background: #00a32a;
    font-size: 18px;
    padding: 15px 40px;
}

.music-btn-success:hover {
    background: #008a20;
}

#file-info {
    padding: 15px;
    background: #f0f0f1;
    border-radius: 5px;
}

#file-info p {
    margin: 0 0 15px 0;
    color: #333;
}

#file-info strong {
    color: #0073aa;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #f0f0f1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0073aa, #2271b1);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #333;
    font-weight: bold;
}

.success-message {
    padding: 20px;
    background: #d7f0d7;
    border-right: 4px solid #00a32a;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success-message p {
    margin: 10px 0;
    color: #333;
}

.success-message strong {
    color: #00a32a;
}

.success-message a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.success-message a:hover {
    text-decoration: underline;
}

#convert-section,
#post-created-section {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}