﻿.container-notification {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow:auto;
    max-height:100%;
}

.container-notification-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.notification-item-message {
    white-space: unset;
    width: 100%;
}

.notification-item-date {
    width: 10rem;
}

.notification-item-outil {
    color: black;
    font-weight: 700;
    width: 8rem;
    min-width: 8rem;
}

.container-notification-item {
    font-size: 0.9rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    border-bottom: 1px solid var(--separator-color);
    align-items: flex-start;
}


.container-notification-item-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.notif-input {
    border: 0;
    border-radius: 0.5rem;
    width: 100%;
    background: #e7e7e7 !important;
    min-height: 2rem;
    padding: 0.3rem 0.7rem;
}

.notification-collapsed > *:not(:first-child) {
    display: none;
}

.notification-button {
    cursor: pointer;
    transition: .5s;
}

.notification-hide-details {
    height: 1rem;
    overflow: hidden;    
    text-overflow: ellipsis;
}

.notification-show-details {
    white-space: break-spaces;
}