
/*
** For toast
*/
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-out-down {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
.animate-fade-in-up {
    animation: fade-in-up 0.3s ease forwards;
}
.animate-fade-out-down {
    animation: fade-out-down 0.3s ease forwards;
}
/*
** For toast
*/

.category-sub-contact h5 {
    min-height: 40px; /* adjust based on font size */
    display: flex;
    align-items: center; /* vertically center if one line */
    text-align: center;
}

.help-block-error, .crud-error-span{
    font-size: 10px;
    color: #930404;
    position: relative;
    width: 100%;
    display: inline-block;
    /*top: -10px*/
}

.add_register_row_button{
    cursor: pointer;
    color: #4A2929;
    margin-bottom: 5px;
    border: 2px #4A2929 solid;
    max-width: fit-content;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 12px;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-link i {
    font-size: 18px;
    line-height: 1;
}

.download-link:hover {
    color: #3d4750;      /* Darker hover color */
}

.download-link:hover i {
    transform: translateY(2px); /* slight movement on hover */
    color: #0000FF;
}