/*!
 * SETAK Logout Confirm - Stylesheet
 * Author: SETAKWEB.IR
 */

.setak-logout-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}

.setak-logout-modal.is-open {
	display: flex;
}

.setak-logout-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.55);
	backdrop-filter: blur(2px);
	animation: setak-fade-in 0.18s ease;
}

.setak-logout-modal-box {
	position: relative;
	background: #ffffff;
	border-radius: 14px;
	padding: 28px 24px;
	max-width: 380px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
	animation: setak-pop-in 0.2s ease;
	direction: rtl;
}

.setak-logout-modal-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
}

.setak-logout-modal-message {
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

.setak-logout-modal-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.setak-logout-btn {
	appearance: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 8px;
	transition: opacity 0.15s ease, transform 0.1s ease;
	min-width: 110px;
}

.setak-logout-btn:hover {
	opacity: 0.9;
}

.setak-logout-btn:active {
	transform: scale(0.97);
}

.setak-logout-btn-confirm {
	background: #e53935;
	color: #fff;
}

.setak-logout-btn-cancel {
	background: #f0f0f0;
	color: #333;
}

@keyframes setak-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes setak-pop-in {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
	.setak-logout-modal-box {
		padding: 22px 18px;
	}
}
