.dashboard-card {
    margin-bottom: 16px;
}

.form-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group .required {
    color: #dc2626;
}

.form-group .optional {
    color: #94a3b8;
    font-weight: 400;
    font-size: 12px;
}

.form-group .form-control {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.15s;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-group select.form-control {
    appearance: auto;
}

.char-count {
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
    margin-top: 4px;
}

/* Drop zone */
.drop-zone {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.15s;
    background: #fafbfc;
}

.drop-zone.drag-over {
    border-color: #3b82f6;
    background: #eff6ff;
}

.drop-zone-icon {
    font-size: 32px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.drop-zone-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 4px;
}

.drop-zone-subtext {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

/* File list */
.file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
}

.file-info i {
    color: #64748b;
}

.file-name {
    font-weight: 500;
}

.file-size {
    color: #94a3b8;
    font-size: 12px;
}

.btn-remove-file {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.15s;
}

.btn-remove-file:hover {
    color: #dc2626;
    background: #fef2f2;
}

/* Form actions */
.form-actions {
    margin-top: 8px;
}

/* Thank you page */
.thank-you-container {
    padding: 60px 20px;
    text-align: center;
}

.thank-you-icon {
    font-size: 64px;
    color: #059669;
    margin-bottom: 20px;
}

.thank-you-title {
    font-size: 24px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}

.thank-you-message {
    font-size: 15px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
