/* Container */
.notification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    margin-inline: 24px;
}

/* Layout */
.notification-layout {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #FFF;
    box-shadow: 0 0 8px rgba(40, 43, 62, 0.25);
    padding: 0;
    border: 2px solid #2D69FF;
}

/* Blue strip */
.inv-img-container {
    background-color: #2D69FF;
    width: 40px;
    display: flex;
    padding-top: 16px;
    justify-content: center;
}

/* Icon */
.notification-icon {
    width: 24px;
    height: 24px;
}

/* Content */
.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.notification-content h1 {
    color: #282B3E;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.notification-bar.blue {
    background-color: #e0f0ff;
}

.notification-bar.gray {
    background-color: #eaeaea;
}

.inv-message {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.notification-text a {
    color: #06874E;
    font-weight: 400;
    font-size: 14px;
}

/* Login link */
.notification-login-link {
    cursor: pointer;
}

.notification-login-link .notification-login-text {
    display: inline;
    font-size: 14px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .notification-layout {
        flex-direction: column;
        align-items: flex-start;
    }
    .inv-img-container {
        width: 100%;
        justify-content: flex-start;
        padding: 8px;
    }
}
