.flash-messages {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
}

.flash-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 12px 20px;
}

.flash-message-text {
    flex: 1 1 auto;
    line-height: 1.4;
}

.flash-message-close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
}

.flash-message-close:hover,
.flash-message-close:focus {
    opacity: 1;
    outline: none;
}
