.ud-register-form{max-width:520px;background:#fff;padding:18px;border-radius:8px;border:1px solid #eee;font-family:Arial,Helvetica,sans-serif}
.ud-register-form label{display:block;margin-bottom:10px;font-weight:700;color:#8a1712}
.ud-register-form input[type="text"], .ud-register-form input[type="file"]{width:100%;padding:10px;border:1px solid #ddd;border-radius:6px}
.ud-btn{background:#b21e18;color:#fff;border:none;padding:10px 16px;border-radius:20px;cursor:pointer}
.ud-docs-card{background:#fff;padding:12px;border-radius:6px;border:1px solid #eee;margin-top:12px}
.ud-docs-title{margin:0 0 10px 0;font-size:18px;line-height:1.2}
.ud-docs-title small{font-weight:400;color:#666;font-size:13px}
.ud-docs-table-wrap{width:100%;overflow:auto;-webkit-overflow-scrolling:touch;border:1px solid #f1f1f1;border-radius:8px}
.ud-docs-table{width:100%;border-collapse:collapse}
.ud-docs-table th, .ud-docs-table td{padding:10px 12px;border-bottom:1px solid #f2f2f2;text-align:left;vertical-align:top;white-space:nowrap}
.ud-docs-table td:nth-child(3){white-space:normal;min-width:220px}
.ud-docs-table th{background:#fafafa;font-weight:700}
.ud-docs-table tr:last-child td{border-bottom:none}
.ud-notice{padding:10px;margin:10px 0;border-radius:6px}
.ud-notice.success{background:#e6f6ea;color:#1b5e20}
.ud-notice.error{background:#fdecea;color:#9d1c1c}

@media (max-width: 520px){
  .ud-register-form{padding:14px}
  .ud-docs-title{font-size:16px}
  .ud-docs-table th, .ud-docs-table td{padding:9px 10px}
}

/* Modal registro usuario */
.ud-modal {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s;
}
.ud-modal-content {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	padding: 32px 24px 24px 24px;
	max-width: 370px;
	width: 100%;
	position: relative;
	text-align: center;
	animation: slideUp 0.3s;
}
.ud-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 22px;
	color: #b21e18;
	cursor: pointer;
	background: none;
	border: none;
	transition: color 0.2s;
}
.ud-modal-close:hover {
	color: #8a1712;
}
.ud-modal-message.success {
	color: #1b5e20;
	background: #e6f6ea;
	border-radius: 8px;
	padding: 16px 10px;
	margin-bottom: 18px;
	font-size: 1.08em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.ud-modal-message.error {
	color: #9d1c1c;
	background: #fdecea;
	border-radius: 8px;
	padding: 16px 10px;
	margin-bottom: 18px;
	font-size: 1.08em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.ud-modal-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}
.ud-modal-actions .ud-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 1em;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 20px;
	background: #b21e18;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.ud-modal-actions .ud-btn:hover {
	background: #8a1712;
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideUp {
	from { transform: translateY(40px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}
