:root {
    --inad-primary: #6366f1;
    --inad-dark: #1e293b;
    --inad-bg: #f8fafc;
}

.inad-dashboard-wrapper {
    background: var(--inad-bg);
    padding: 20px;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.inad-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Radio Button Filters */
.inad-filter-group {
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.inad-radio-btn input { display: none; }
.inad-radio-btn span {
    padding: 8px 18px;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.inad-radio-btn input:checked + span {
    background: var(--inad-primary);
    color: #fff;
}

/* Table */
.inad-table-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.inad-view-btn {
    background: var(--inad-primary);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

/* Modal */
.inad-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.inad-modal-content {
    background: #fff;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.inad-modal-header {
    background: #f1f5f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.inad-modal-body { padding: 20px; }

.detail-row {
    display: flex;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.detail-label {
    width: 35%;
    font-weight: 700;
    color: #64748b;
    text-transform: capitalize;
}

.detail-value { width: 65%; color: var(--inad-dark); }
.inad-close { cursor: pointer; font-size: 20px; font-weight: bold; }