/* IskelePort Custom Styles */

html, body {
    font-family: 'Roboto', sans-serif;
    height: 100%;
    margin: 0;
}

/* Loading indicator */
.loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Card hover effect */
.mud-card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-in-out;
}

/* Table row hover */
.mud-table-row:hover {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

/* Custom button styles */
.btn-gradient {
    background: linear-gradient(45deg, #1976d2, #42a5f5);
    border: none;
    color: white;
}

/* Page transitions */
.page-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s, transform 0.3s;
}

/* Form validation */
.validation-message {
    color: #d32f2f;
    font-size: 0.75rem;
    margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .mud-drawer {
        width: 100% !important;
    }
    
    .hide-on-mobile {
        display: none !important;
    }
}

/* Print styles */
@media print {
    .mud-appbar,
    .mud-drawer,
    .no-print {
        display: none !important;
    }
    
    .mud-main-content {
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Dialog select popover z-index fix */
.dialog-select-popover {
    z-index: 1500 !important;
}

.mud-popover-provider .mud-popover {
    z-index: 1500 !important;
}
