/**
 * Armex Important Documents - Styles
 */

.armex-important-documents {
	background: #fff;
	/*border: 1px solid #e5e7eb;*/
	overflow: hidden;
	margin: 2rem 0;
	box-shadow: none;
	font-family: var(--e-global-typography-2c51ee3-font-family), Sans-serif;
}

.armex-important-documents-header {
	display: flex;
	align-items: center;
	padding: 1.25rem 1.75rem;
	cursor: pointer;
	background: #ffffff;
	border: 1px solid var(--e-global-color-2208106);
	/*border-bottom: 1px solid transparent;*/
	transition: all 0.3s ease;
}

.armex-important-documents-header:hover {
	background: #fafbfc;
}

.armex-important-documents-header.active {
	border: 1px solid var(--e-global-color-2208106);
	background: #ffffff;
}

.armex-important-documents-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	background: transparent;
	color: #6b7280;
	border-radius: 0;
	margin-right: 0.875rem;
	flex-shrink: 0;
}

.armex-important-documents-icon svg {
	width: 24px;
	height: 24px;
}

.armex-important-documents-title {
	flex: 1;
	margin: 0 !important;
	font-size: 1.0625rem !important;
	font-weight: 600 !important;
	color: var(--e-global-color-2208106) !important;
	line-height: 1.5 !important;
}

.armex-important-documents-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent !important;
	border: none;
	cursor: pointer;
	color: var(--e-global-color-2208106) !important;
	transition: transform 0.3s ease, color 0.2s ease;
	flex-shrink: 0;
}

.armex-important-documents-toggle:hover {
	color: var(--e-global-color-2208106);
	background: transparent !important;
}

.armex-important-documents-toggle.active {
	transform: rotate(180deg);
}

.armex-important-documents-toggle svg {
	width: 20px;
	height: 20px;
}

.armex-important-documents-content {
	padding: 2rem;
	background: #fff;
}

.armex-important-documents-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.armex-important-document-item {
	display: flex;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	/*border-radius: 10px;*/
	text-decoration: none;
	color: var(--e-global-color-2208106);
	transition: all 0.2s ease;
	min-height: 72px;
}

.armex-important-document-item:hover {
	background: #ffffff;
	border-color: #d1d5db;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.armex-important-document-item:hover .document-icon {
	color: #ef4444;
}

.armex-important-document-item .document-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 1rem;
	color: #4b5563;
	transition: color 0.2s ease;
}

.armex-important-document-item .document-icon svg {
	width: 22px;
	height: 22px;
}

.armex-important-document-item .document-title {
	flex: 1;
	font-size: 1rem !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	color: var(--e-global-color-2208106) !important;
	text-transform: none !important;
}

.armex-important-documents-empty {
	padding: 2rem;
	text-align: center;
	color: #6b7280;
	font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
	.armex-important-documents-grid {
		grid-template-columns: 1fr;
	}

	.armex-important-documents-header {
		padding: 1rem 1.25rem;
	}

	.armex-important-documents-content {
		padding: 1.25rem;
	}

	.armex-important-documents-title {
		font-size: 1rem;
	}

	.armex-important-document-item {
		padding: 0.875rem 1rem;
	}

	.armex-important-document-item .document-title {
		font-size: 0.875rem;
	}
}

/* Animation for content reveal */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.armex-important-documents-content.active {
	animation: slideDown 0.3s ease-out;
}
