/**
 * Document Toolkit Converter Styles
 *
 * Professional styling for the Markdown to PDF converter
 * Version: 1.0.0
 */

/* Document Toolkit Converter Styles */

.dt-converter-wrapper {
	max-width: 700px;
	margin: 30px auto;
	padding: 0 20px;
}

.dt-converter-container {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dt-converter-container h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #333;
	font-size: 24px;
}

.dt-description {
	color: #666;
	margin-bottom: 25px;
	font-size: 14px;
}

.dt-form {
	margin-bottom: 20px;
}

.dt-form-group {
	margin-bottom: 20px;
}

.dt-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
}

.dt-file-input {
	display: block;
	width: 100%;
	padding: 10px;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: border-color 0.2s;
}

.dt-file-input:focus {
	outline: none;
	border-color: #4CAF50;
}

.dt-help-text {
	margin-top: 6px;
	margin-bottom: 0;
	font-size: 13px;
	color: #888;
}

.dt-button {
	background-color: #4CAF50;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.dt-button:hover {
	background-color: #45a049;
}

.dt-button:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}

.dt-status {
	margin-top: 20px;
	padding: 15px;
	border-radius: 4px;
	font-size: 14px;
}

.dt-status p {
	margin: 0;
}

.dt-status-info {
	background-color: #e3f2fd;
	border: 1px solid #90caf9;
	color: #1976d2;
}

.dt-status-success {
	background-color: #e8f5e9;
	border: 1px solid #81c784;
	color: #388e3c;
}

.dt-status-error {
	background-color: #ffebee;
	border: 1px solid #e57373;
	color: #c62828;
}

/* Drag and Drop Zone */
.dt-drop-zone {
	border: 2px dashed #4CAF50;
	border-radius: 8px;
	padding: 40px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f9f9f9;
	margin-bottom: 20px;
}

.dt-drop-zone:hover {
	background: #e8f5e9;
	border-color: #45a049;
}

.dt-drop-zone.dragover {
	background: #c8e6c9;
	border-color: #2e7d32;
	border-style: solid;
	transform: scale(1.02);
}

.dt-drop-zone-content {
	pointer-events: none;
}

.dt-drop-icon {
	font-size: 48px;
	margin: 0 0 10px 0;
	line-height: 1;
}

.dt-drop-text {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: #333;
}

.dt-drop-subtext {
	color: #666;
	margin: 0 0 10px 0;
	font-size: 14px;
}

.dt-drop-limit {
	font-size: 12px;
	color: #888;
	margin: 0;
}

/* File Info Display */
.dt-file-info {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.dt-file-selected {
	margin: 0 0 15px 0;
	font-size: 14px;
	color: #333;
}

.dt-file-selected strong {
	color: #4CAF50;
}

.dt-file-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.dt-button-secondary {
	background-color: #757575;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.dt-button-secondary:hover {
	background-color: #616161;
}

.dt-button-secondary:disabled {
	background-color: #cccccc;
	cursor: not-allowed;
}
