/* Container voor Noodfrequenties */
.noodfreq_table-container {
    overflow-x: auto;
    margin: 20px 0;
}

/* Tabel styling */
.noodfreq_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Cellen styling */
.noodfreq_table th, 
.noodfreq_table td {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
}

/* Header styling */
.noodfreq_table th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
}

/* Zebra-strepen en hover effect */
.noodfreq_table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.noodfreq_table tr:hover td {
    background-color: #f1f1f1;
}

/* Specifieke styling voor de frequentie kolom */
.noodfreq_table .frequency {
    color: #007BFF;
    font-weight: bold;
}
.freq-container { 
    font-family: sans-serif; 
    margin-bottom: 3rem; 
}
.freq-category-section { 
    margin-bottom: 40px; 
}
.freq-cat-title { 
    background: #222; 
    color: #fff; 
    padding: 10px 15px; 
    border-radius: 5px; 
    margin-bottom: 15px; 
    font-size: 1.1rem;
    border-bottom: 3px solid #d9534f;
}
.freq-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 15px; 
}
.freq-card { 
    background: #fdfdfd; 
    border: 1px solid #ddd; 
    padding: 15px; 
    border-radius: 10px; 
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.freq-card:hover { 
    border-color: #d9534f; 
}
.freq-label { 
    display: block; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: #888; 
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.freq-band { 
    display: block; 
    font-weight: bold; 
    font-size: 1.1rem; 
    color: #333; 
    margin-bottom: 10px;
}
.freq-value { 
    display: inline-block; 
    background: #222; 
    color: #00ff00; 
    padding: 5px 12px; 
    border-radius: 5px; 
    font-family: 'Courier New', monospace; 
    font-weight: bold; 
    font-size: 1.2rem; 
    box-shadow: inset 0 0 5px #000;
}
