/* ===== CSS STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(120deg, #3a7bd5 0%, #3a6073 100%);
	min-height: 100vh;
	display: flex; justify-content: center; align-items: center; padding: 20px;
}

.container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	max-width: 600px;
	width: 100%;
	overflow: hidden;
}

.header {
	background: linear-gradient(135deg, #e1d052 0%, #10edcf 100%);
	color: #333;
	padding: 40px 30px;
	text-align: center;
}

.header h1 { font-size: 1.8em; margin-bottom: 10px; }
.header p { font-size: 1.1em; opacity: 0.9; font-weight: 500; }

.content { padding: 30px; }

.info-section {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 30px;
}

.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.info-item:last-child { margin-bottom: 0; }

.info-icon {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #31e48f 0%, #00f2fe 100%);
	border-radius: 12px;
	display: flex;
	align-items: center; justify-content: center;
	margin-right: 15px;
	color: white; font-size: 1.3em; flex-shrink: 0;
}

.info-text { flex: 1; }
.info-label { font-size: 0.85em; color: #666; margin-bottom: 3px; }
.info-value { font-size: 1.05em; color: #333; font-weight: 600; line-height: 1.4; }

.button-section { display: flex; flex-direction: column; gap: 15px; }

.btn {
	width: 100%; padding: 18px; border: none; border-radius: 12px;
	font-size: 1.1em; font-weight: 600; cursor: pointer;
	transition: all 0.3s ease;
	display: flex; align-items: center; justify-content: center; gap: 12px;
}

.btn-zoom { background: #2D8CFF; color: white; }
.btn-archive { background: #34a853; color: white; }

.btn:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active:not(:disabled) { transform: scale(0.98); }

.btn:disabled {
	background: #ccc; color: #888; cursor: not-allowed;
	filter: grayscale(1); opacity: 0.6;
}

/* Toast Minimalis */
#toastBox { position: fixed; top: 20px; right: 20px; z-index: 999; }
.toast {
	background: #333; color: white; padding: 15px 25px;
	border-radius: 10px; margin-bottom: 10px; font-size: 0.9em;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	transform: translateX(150%); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show { transform: translateX(0); }

@media (max-width: 600px) {
	.header h1 { font-size: 1.5em; }
	.content { padding: 20px; }
}