/* Music Upload Unified View Styles */

/* Upload Form */
.music-upload-form {
	background-color: transparent;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 10px;
}

.music-upload-form .form-group {
    margin-bottom: 10px;
}


.music-upload-form input.form-control {
	display: none;
}

.music-upload-form input.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

/* Upload Section Header */
.music-upload-section {
	border-radius: 25px;
	margin-top: 50px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.upload-header {
	padding: 8px;
	text-align: center;
	display: block;
	cursor: pointer;
}
.upload-label {
	margin: 0;
	font-weight: 600;
	color: #000000;
	font-size: 14px;
}

.upload-info {
	display: block;
	margin-top: 3px;
	color: #A7B7BD;
	font-size: 10px;
}

/* Progress Bar */
#music-upload-progress {
	margin: 15px 0;
	padding-bottom: 1px;
}

#music-upload-progress .progress {
	height: 20px;
	background-color: #5298A1;
	border-radius: 4px;
	overflow: hidden;
	margin: 5px 10px;
}

#music-upload-progress .progress-bar {
	height: 100%;
	background-color: #006775;
	width: 0%;
	transition: width 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
}

#upload-status-text {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

/* Error Message */
#music-upload-error {
    color: #dc3545;
    font-size: 13px;
    padding: 8px 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.edit-title-btn {
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 5px 0px;
	margin-left: 10px;
	font-size: 12px;
	transition: color 0.2s;
}

.edit-title-btn:hover {
    color: #333;
}

/* Inline Title Edit */
.inline-title-edit {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #4a9fb5;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
}

.inline-title-edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 159, 181, 0.2);

/* Responsive */
@media (max-width: 600px) {
    .music-upload-section {
        padding: 12px;
    }
    
    .upload-label {
        font-size: 14px;
    }
}
