/* Sheet Drive Notification Styles - Matching VR Integrations */

.modal-inner{
	margin-top: 40px !important;
}

.sheet-drive-msg {
	font-size: 14px !important;
	display: none !important;
	margin-bottom: 24px !important;
	margin-top: 40px !important;
	padding: 16px !important;
	border-radius: 6px !important;
	position: relative !important;
	z-index: 10 !important;
}

.sheet-drive-msg.show {
	display: block !important;
}

.sheet-drive-msg.success {
	background: #d4edda !important;
	border: 1px solid #c3e6cb !important;
	color: #155724 !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	font-weight: 500 !important;
}

.sheet-drive-msg.success::before {
	content: "✅";
	font-size: 18px !important;
	flex-shrink: 0;
}

.sheet-drive-msg.error {
	background: #f8d7da !important;
	border: 1px solid #f5c6cb !important;
	color: #721c24 !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	font-weight: 500 !important;
}

.sheet-drive-msg.error::before {
	content: "❌";
	font-size: 18px !important;
	flex-shrink: 0;
}

.sheet-drive-msg.processing {
	background: #d1ecf1 !important;
	border: 1px solid #bee5eb !important;
	color: #0c5460 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 12px !important;
	font-weight: 500 !important;
}

.sheet-drive-msg.processing::before {
	content: "⏳";
	font-size: 18px !important;
	flex-shrink: 0;
	animation: sheet-drive-spin 2s linear infinite;
}

/* File upload progress bar */
.sheet-drive-progress {
	width: 100%;
	height: 8px;
	background-color: #e9ecef;
	border-radius: 4px;
	margin-top: 8px;
	overflow: hidden;
}

.sheet-drive-progress-bar {
	height: 100%;
	background-color: #28a745;
	border-radius: 4px;
	transition: width 0.3s ease;
	width: 0%;
}

.sheet-drive-progress-text {
	font-size: 12px;
	color: #6c757d;
	margin-top: 4px;
}

/* Animation for processing indicator */
@keyframes sheet-drive-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Ensure messages appear above forms */
.sheet-drive-msg {
	position: relative;
	z-index: 10;
}

/* Style small text within notifications */
.sheet-drive-msg small {
	font-size: 12px !important;
	opacity: 0.8 !important;
	margin-top: 4px !important;
	text-align: center !important;
}

/* Upload helper text below label */
.sheet-drive-upload-desc {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #6c757d;
}

/* Required star */
.sheet-drive-required {
	color: #E51919;
}

/* Expiry message styling */
.sheet-drive-expiry-message {
	font-size: 14px;
	padding: 16px;
	margin-top: 24px;
	margin-bottom: 24px;
	border-radius: 6px;
	background: #fff3cd;
	border: 1px solid #ffeeba;
	color: #856404;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	position: relative;
	z-index: 10;
}

.sheet-drive-expiry-message::before {
	content: "⏰";
	font-size: 18px;
	flex-shrink: 0;
}
