/* Master-Detail Split Layout */
.admin-split-view {
    display: flex;
    height: calc(100vh - 75px); /* Subtract header height */
    overflow: hidden;
    padding: 0 !important;
    max-width: 100% !important;
}

.master-pane {
    flex: 0 0 350px;
    background: #f8f9fa;
    border-right: 1px solid #dfe6e9;
    overflow-y: auto;
    padding: 20px;
}

.detail-pane {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
}

#detailFrame {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

#detailPlaceholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #636e72;
    text-align: center;
}

/* Adjust Sidebar Cards */
.master-pane .grid {
    grid-template-columns: 1fr; /* Force list view */
    gap: 12px;
}

.master-pane .card {
    height: auto;
    min-height: 100px;
    cursor: pointer;
    transition: transform 0.1s;
}

.master-pane .card:active {
    transform: scale(0.98);
}