/* Custom styles */

/* Utility classes */
.cursor-pointer {
    cursor: pointer;
}

/* Toast customization */
.toast-container {
    z-index: 9999 !important; /* Ensure toasts are always on top */
}

/* Grid customization */
.ag-theme-legacy {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    right: 20px;
    bottom: 80px; /* Above footer */
    z-index: 1035;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-menu-button {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #4361ee;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 1020;
    border-top: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

/* Responsive Layout */
@media (max-width: 991.98px) {
    footer {
        position: relative;
        margin-top: auto;
    }
} 