/**
 * Shahrokh Source Discount - Frontend Styles
 *
 * Styles for notification message display.
 *
 * @package Shahrokh_Source_Discount
 * @since 1.0.0
 */

/* ========================================
   Alert Box Styles
   ======================================== */

.ssd-alert-box {
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    background: white;
	animation: ssdSlideIn 0.4s ease-out;
}

/* Message Placeholder (initially hidden) */
.ssd-message-placeholder {
	min-height: 0;
	overflow: hidden;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.ssd-alert-box {
		padding: 12px 15px;
		font-size: 14px;
	}
}

/* Animation */
@keyframes ssdSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Strong text emphasis */
.ssd-alert-box strong {
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Links inside alert box */
.ssd-alert-box a {
	color: #ffffff;
	font-weight: 600;
}

.ssd-alert-box a:hover {
	opacity: 0.8;
}

/* Print styles */
@media print {
	.ssd-alert-box {
		display: none !important;
	}
}
