.storm-reports-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}
.storm-reports-table th, .storm-reports-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}
.storm-reports-table th {
    background-color: #f2f2f2;
}
.storm-reports-table tr:hover {
    background-color: #f5f5f5 !important;
}
.storm-reports-table details {
    margin-bottom: 15px;
}
.storm-reports-table summary {
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    background-color: #e0e0e0;
    border-radius: 4px;
}
.storm-reports-table summary:hover {
    background-color: #d0d0d0;
}
.storm-reports-table .srt-time-range {
    font-size: 1.8em;
    text-align: center;
    margin: 20px 0;
}
.storm-reports-table .srt-filter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.storm-reports-table .srt-filter-label {
    margin-right: 10px;
    font-size: 1.2em;
    white-space: nowrap;
}
.storm-reports-table .srt-custom-dropdown {
    position: relative;
    display: inline-block;
    width: 300px; /* Increased width for full state names */
}
.storm-reports-table .srt-dropdown-selected {
    padding: 10px;
    font-size: 1.2em;
    height: 40px;
    line-height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.storm-reports-table .srt-dropdown-selected::after {
    content: "▼";
    font-size: 0.8em;
    margin-left: 10px;
}
.storm-reports-table .srt-dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}
.storm-reports-table .srt-dropdown-options li {
    padding: 10px;
    font-size: 1.2em;
    cursor: pointer;
}
.storm-reports-table .srt-dropdown-options li:hover {
    background-color: #f0f0f0;
}
.storm-reports-table .srt-dropdown-options li.selected {
    background-color: #e0e0e0;
}
.storm-reports-table .srt-dropdown-options li.srt-separator {
    padding: 5px 10px;
    font-size: 1em;
    color: #666;
    text-align: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
}
.storm-reports-table .srt-dropdown-options li.srt-separator:hover {
    background-color: transparent;
}