.edgar-filter {
    margin-bottom: 30px;
}
.edgar-filter-group {
    margin-bottom: 28px;
}
.edgar-filter-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1a1a;
}
.edgar-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.edgar-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 58px;
    padding: 10px 5px;
    margin: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s ease;
    line-height: 1.3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef0f2;
    transition: box-shadow .2s ease, transform .2s ease;
}
.edgar-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.edgar-btn span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.edgar-btn:hover {
    border-color: #e0c252;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}
.edgar-btn.is-active {
    background: #fdf6e3;
    border-color: #e8c84d;
}
.edgar-btn.is-active span {
    color: #1a1a1a;
    font-weight: 600;
}
.edgar-filter-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.edgar-apply {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}
.edgar-apply:hover {
    background: #333;
}
.edgar-clear {
    font-size: 14px;
    color: #999;
    text-decoration: underline;
}
.edgar-clear:hover {
    color: #555;
}
