/* General styles for inputs and containers */
.wdm-additional-filter,
.wdm-additional-filter:focus {
    width: 98%;
    padding: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid #c4c4c4;
    border-radius: 4px;
    outline: none;
    height: 50px;
    font-size: 17px;
}

/* Disabled input state */
.wdm-additional-filter:disabled {
    background: #eee !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* Minimum width for input containers in specific wrapper */
.wisdm-learndash-reports-report-filters .selector:has(.wdm-additional-filter) {
    min-width: calc(50% - 20px) !important;
    margin-right: 15px;
    margin-bottom: 15px;
}

/* Container for the bell icon */
.bell-icon-container {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    float: right;
}

/* The bell icon itself */
.bell-icon {
    font-size: 30px;
    color: #333;
}

/* Badge positioning on top-right corner */
.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

/* Optional: Hover effect on the bell */
.bell-icon-container:hover .bell-icon {
    color: #0073e6;
}

/* Media query for small screens */
@media (max-width: 1112px) {
    .wisdm-learndash-reports-report-filters .selector:has(.wdm-additional-filter) {
        margin-bottom: 0;
    }
}

/* Adjust input width on smaller screens */
@media (max-width: 770px) {
    .wdm-additional-filter,
    .wdm-additional-filter:focus {
        width: 100%;
    }
}
