/* Commission Request Page Styles */
.commission-form-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.commission-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.75rem;
}

.artist-info {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.artist-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #555;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-text {
    font-size: 0.85rem;
    color: #777;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #aaa;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.05);
}

.btn-submit {
    background: linear-gradient(135deg, #ff445a, #ff6a3d);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 68, 90, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e63347, #e85f35);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 51, 71, 0.3);
}

.readonly-field {
    background-color: #f8f9fa;
    color: #666;
}

.commission-info {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.commission-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.commission-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}