﻿body {
    font-family: 'Inter', sans-serif !important;
}


.custom-table .td {
    display: flex !important;
    justify-content: space-between !important;
    padding: 0px !important;
}

.sub-menu-splitter {
    margin: 0.5rem 0 !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* Toast */

.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse; /* Stack upward */
    gap: 10px;
    z-index: 9999;
}

.notification {
    padding: 10px 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

    .notification.show {
        opacity: 1;
        transform: translateX(0);
    }

    .notification.hide {
        opacity: 0;
        transform: translateX(100%);
    }

/* Notification types */
.notification-info {
    background-color: #2196f3;
}

.notification-success {
    background-color: #4caf50;
}

.notification-warning {
    background-color: #ff9800;
}

.notification-error {
    background-color: #f44336;
}

/* End Toast */

/* Table */

td:focus {
    outline: none !important;
}

.entity-meta-input {
    width: 100%;
    padding: 5px;
    background: transparent;
}

/* End Table */