.ifuture-notice {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin: 25px 0;
    border-radius: var(--radius);
    background: #f1f8ff;
    border-left: 4px solid var(--info);
    color: var(--info);
    box-shadow: var(--shadow);
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    transition: all .3s ease;
}

.ifuture-notice .notice-icon {
    margin-right: 15px;
    font-size: 18px;
    flex-shrink: 0;
    color: inherit;
}

.ifuture-notice .notice-content {
    flex: 1;
}

.ifuture-notice .notice-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s;
}

.ifuture-notice .notice-close:hover {
    opacity: 1;
}

.notice-dismissible {
    padding-right: 40px;
}

.notice-animated {
    animation: slideInRight .4s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
