/* ========= INFORMATION ============================

	- document:  Fake Notifications - creating effective herd effects
	- author:    Wow-Company @ Codecanyon
	- profile:   https://codecanyon.net/user/wow-company
	- version:   1.1
	- email:     wow@wow-company.com

==================================================== */
.notification {
    padding: 10px;
    z-index: 9999999999;
    position: fixed;
    font-size: 12px;
    font-family: Verdana, sans-serif;
    display: none; /* Plugin will change this to block */
    border-style: solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Added for visibility */
    max-width: 320px; /* Added max-width */
}

.notification-block {
    position: relative;
    width: 100%;
    float: left;
    min-height: 1px;
    white-space: normal;
    display: flex; /* Changed to flex for better alignment */
    align-items: center;
}

.notification-img,
.notification-text-block {
    float: left;
    min-height: 1px;
    white-space: normal;
    display: inline-block;
    vertical-align: middle;
}

.notification-img {
    height: 60px;
    width: 60px;
    text-align: center;
    font-size: 40px !important;
    line-height: 60px; /* Match height for proper centering */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.notification-img img {
    width: 100%;
    height: auto;
    max-height: 100%; /* Ensure image doesn't overflow */
    object-fit: contain; /* Maintain aspect ratio */
}

.notification-text-block {
    width: 200px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.3;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 4px; /* Add spacing between title and text */
}

.notification-text {
    font-size: 11px; /* Slightly smaller for description */
}