/**
 * Doctor Research Papers Submission - Frontend Styles
 */

.drps-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.drps-form-section {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.drps-form-section:last-child {
	border-bottom: none;
}

.drps-section-title {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 1.3em;
	font-weight: 600;
	color: #333;
}

.drps-form-group {
	margin-bottom: 20px;
}

.drps-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.drps-required {
	color: #d63638;
}

.drps-input,
.drps-textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.drps-input:focus,
.drps-textarea:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 1px #2271b1;
}

.drps-textarea {
	resize: vertical;
	min-height: 100px;
}

.drps-file-input {
	width: 100%;
	padding: 8px 0;
}

.drps-help-text {
	display: block;
	margin-top: 5px;
	font-size: 13px;
	color: #666;
	font-style: italic;
}

.drps-checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.drps-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.drps-checkbox-label input[type="checkbox"] {
	margin: 0;
}

.drps-current-image {
	margin-top: 10px;
}

.drps-current-image img {
	max-width: 150px;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.drps-form-actions {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.drps-submit-button {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

.drps-submit-button:hover {
	background: #135e96;
}

.drps-submit-button:active {
	background: #0a4b78;
}

/* Messages */
.drps-message {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	border-left: 4px solid;
}

.drps-message.drps-success {
	background: #f0f6fc;
	border-color: #00a32a;
	color: #1e4620;
}

.drps-message.drps-error {
	background: #fcf0f1;
	border-color: #d63638;
	color: #8a2424;
}

.drps-message.drps-warning {
	background: #fcf9e8;
	border-color: #dba617;
	color: #6b5400;
}

.drps-link {
	color: #2271b1;
	text-decoration: underline;
}

.drps-link:hover {
	color: #135e96;
}

/* Meta Display */
.drps-meta-display {
	margin: 20px 0;
}

.drps-meta-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drps-meta-item {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.drps-meta-item:last-child {
	border-bottom: none;
}

.drps-meta-item strong {
	display: inline-block;
	min-width: 120px;
	color: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.drps-form {
		padding: 15px;
	}

	.drps-section-title {
		font-size: 1.1em;
	}
}

