/* Aperçu du ticket */
.status {
    color: var(--police-light-color);
    font-size: 13px;
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin-left: 10px;
    display: inline-block;
    transition: 0.3s;
}

.status_open {
    background-color: rgb(16, 133, 72);
    color: var(--police-white-color);
}

.status_close {
    background-color: rgb(221, 43, 14);
    color: var(--police-white-color);
}

.status_pending {
    background-color: rgb(237, 145, 33);
    color: var(--police-white-color);
}

.status_progress {
    background-color: rgb(30, 117, 204);
    color: var(--police-white-color);
}

.status_default {
    background-color: rgb(150, 150, 150);
    color: var(--police-white-color);
}

.support_block {
    position: fixed;
    background-color: var(--background-block-second);
    border-radius: 15px;
    margin: 10px auto;
    padding: 10px 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 80%;
    z-index: 1;
}

.support_block:hover {
    box-shadow: 0px 7px 20px rgba(0,0,0,0.15);
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.support_header {
    color: var(--police-main-color);
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.ticket_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0;
}
.support_block.open .ticket_content {
    max-height: 500px; 
    padding: 10px 0px;
}

.details_value {
    color: var(--police-main-color);
    max-width: 100%;
    border-radius: 8px;
    margin: 5px 0;
    transition: 0.3s;
    display: flex;
    max-height: 300px;
    overflow-y: scroll;
    cursor: default;
}