/* Modern, minimal styling */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modern-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.card {
    border: none;
}

h2.card-title {
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
}

/* Select2 custom styling */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 38px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 0 6px;
    margin: 4px 4px 4px 0;
    border-radius: 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255,255,255,0.7);
}

/* Analytics table styling */
.analytics-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fefefe;
}
.analytics-table th,
.analytics-table td {
    border: 1px solid #e0e0e0;
    padding: 10px;
    text-align: center;
}
.analytics-table th {
    background: #fafafa;
    font-weight: 600;
}

/* Drill-down container styling */
#drilldown-container {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Modern shadows */
.card, .analytics-table, #drilldown-container {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

