
/* Стили для алертов */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    color: white;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.custom-alert.show {
    transform: translateX(0);
}

.alert-success {
    background-color: #4CAF50;
}

.alert-error {
    background-color: #f44336;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-left: 15px;
    cursor: pointer;
    padding: 0 0 0 10px;
}

.related-cases {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}
.related-cases ul {
    list-style-type: none;
    padding-left: 20px;
}
.related-cases li {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #eee;
}


