#social-proof-notification-container {
    position: fixed;
    bottom: 10px;
    left: 10px; /* Left side position */
    z-index: 9999;
    width: 100%;
    max-width: 350px; 
    pointer-events: none; 
}

.custom-notification {
    background-color: #fff;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    display: flex;
    align-items: center;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.custom-notification.show {
    opacity: 1;
    transform: translateY(0); /* Final position: upar aa jana */
}

.custom-notification.hide {
    opacity: 0;
    transform: translateY(20px); /* Wapas neeche jaate hue fade-out */
}

/* Image Styling */
.notification-image-container {
    margin-right: 10px;
}

.notification-image-container img {
    width: 80px; 
    height: 80px;
    border-radius: 5%; /* Gol image */
    object-fit: cover;
}

/* Text Container Styling */
.notification-content {
    display: flex;
    flex-direction: column;
    width: 70%;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.notification-line-1 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-block-end: 0 !important;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.notification-line-2 {
    font-size: 13px;
    color: #01335b;
    margin: 2px 0;
    font-weight: 600;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.notification-line-3 {
    font-size: 13px;
    color: #424242;
    margin: 0;
    font-weight: 300;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.notification-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 4px;
    width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.notification-time {
    color: #777;
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}

.verified-text {
    color: #007bff; 
    font-weight: bold;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color emoji;
	line-height: 1.4em;
}


/* Media Query for Small Screens (Max-width 600px) */
@media only screen and (max-width: 600px) {
    

    #social-proof-notification-container {
        max-width: 75%; 
    }

    .notification-image-container img {
        width: 70px;
        height: 70px;
    }

    .notification-line-1 {
        font-size: 13px;
    }
    
    .notification-line-2 {
        font-size: 12px;
    }

    .notification-footer {
        font-size: 10px;
    }

    /*
    .custom-notification {
        flex-wrap: wrap; 
    }
    .notification-content {
        width: 70%; 
    }
    */
}