/* DBSPlatform Admin Portal — Custom styles */

html, body {
    font-family: 'Roboto', sans-serif;
    background-color: #F5F5F5;
    height: 100%;
}

/* Amélioration des cartes dans le layout principal */
.mud-main-content {
    min-height: calc(100vh - 64px);
}

/* Table zebra-stripe subtil */
.mud-table-row:nth-child(even) {
    background-color: rgba(0,0,0,.02);
}

/* Animation d'entrée douce */
.mud-card {
    transition: box-shadow .2s ease, transform .1s ease;
}
.mud-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.12) !important;
}

/* Sticky floating save bar */
.floating-save {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    border-radius: 12px;
    padding: 12px 20px;
}

/* Timeline personnalisée */
.mud-timeline-item-dot {
    transition: transform .2s;
}
.mud-timeline-item-dot:hover {
    transform: scale(1.3);
}

/* NavMenu active state */
.mud-nav-link.active {
    background: rgba(98, 0, 238, .12) !important;
    color: #6200EE !important;
    border-left: 3px solid #6200EE;
}

/* Badge statut tenant */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}
.status-active {
    background: rgba(76, 175, 80, .15);
    color: #2E7D32;
}
.status-inactive {
    background: rgba(0,0,0,.06);
    color: #757575;
}
