/* ----HUB Home Page----- */
.event-hub-main {
    margin-top: 50px;
}
.event-hub-main .nav-tabs{
    margin-top: 2rem;
}
.event-hub-main .events-listing{
    margin-top: 1rem;
}
.nav-tabs .nav-link{
    color: var(--color-gray-900);
}
.nav-tabs .nav-link.active{
    color: var(--color-blue-500);
}
.event-hub-main .amg-logo{
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}
.nav-link.disabled, .nav-link:disabled{
    color: var(--color-gray-600);
}
/* ---Webinar-Series-Homepage--- */
/* ---Webinar-Series-Homepage--- */
.webinar-series-home .details-area p{
    padding: 15px 0px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #4B4B4B;
    margin: 0;
}
.webinar-series-home .details-area ul {
    list-style-type: disc;
}
.webinar-series-home .details-area ul, ol {
    margin: 1em 0;
    padding: 0 0 0 40px;
}
.webinar-series-home .title-and-detail-wrapper{
    flex-wrap: wrap;
}
.webinar-series-home .title-and-detail-wrapper h2{
    font-weight: 700;
    color: #000;
    font-size: 25px;
    padding: 0;
    margin: 0;
}
.webinar-series-home .title-and-detail-wrapper span{
        color: #07143E;
    padding: 0;
    margin: 0;
    font-size: 16px;
}
.webinar-series-home .inassociation-wrapper h4{
    font-size: 1rem;
    line-height: 1.4;
}
.webinar-series-home .inassociation-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.webinar-series-home .info{
    margin-top: 20px;
}

/*** Report ***/
/* user-report-style.css */

/* General container for filters */
.user-report-filters {
    background: #fff;
    border: 1px solid #c3c4c7;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.user-report-filters h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.user-report-filters label {
    font-weight: bold;
    margin-right: 10px;
}

/* Styling for select and input fields */
.user-report-filters select,
.user-report-filters input[type="text"] {
    margin-right: 20px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
}

/* Styling for buttons */
.user-report-filters button {
    margin-right: 10px;
    padding: 6px 12px;
    cursor: pointer;
    vertical-align: middle;
}

.report-filters {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-bottom: 15px;
}

#user_report_table_container {
    margin-top: 20px;
}

/* --- Table Styling --- */
/* Mimics WordPress admin list table styles */
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}
.wp-list-table th,
.wp-list-table td {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    text-align: left;
}
.wp-list-table th {
    background-color: #f7f7f7;
    font-weight: bold;
    color: #333;
    cursor: pointer; /* Indicates sortable */
}
.wp-list-table.striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.wp-list-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Sorting indicators */
.user-report-table th.sortable {
    position: relative;
    padding-right: 25px !important; /* Make space for indicator */
}

.user-report-table th.sortable .sorting-indicator {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.5; /* Default state */
}

.user-report-table th.sortable.asc .sorting-indicator {
    border-bottom: 5px solid #000; /* Up arrow for ascending */
    opacity: 1; /* Active state */
}

.user-report-table th.sortable.desc .sorting-indicator {
    border-top: 5px solid #000; /* Down arrow for descending */
    opacity: 1; /* Active state */
}

/* --- Pagination Styling --- */
.tablenav {
    height: 30px; /* Adjust height as needed */
    margin-top: 10px;
    clear: both;
    display: flex;
    justify-content: space-between; /* Aligns items to ends */
    align-items: center;
}

.tablenav .tablenav-pages {
    float: right; /* Aligns to right */
    margin: 0;
    display: flex;
    align-items: center;
}

.tablenav .tablenav-pages .displaying-num {
    margin: 0 15px;
    line-height: 28px;
    font-size: 13px;
    color: #50575e;
}

.tablenav .tablenav-pages .pagination-links {
    display: inline-flex; /* Use flex for button alignment */
    vertical-align: middle;
}

.tablenav .tablenav-pages .pagination-links a.button,
.tablenav .tablenav-pages .pagination-links span.button {
    min-width: 28px; /* Standard WordPress button size */
    text-align: center;
    padding: 0 8px;
    line-height: 25px;
    height: 28px;
    border-color: #c3c4c7;
    background: #f6f7f7;
    color: #007cba;
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
    margin-left: 5px; /* Spacing between buttons */
    text-decoration: none; /* Remove underline */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tablenav .tablenav-pages .pagination-links a.button.current,
.tablenav .tablenav-pages .pagination-links span.button.current {
    background: #e5e5e5;
    cursor: default;
    box-shadow: none;
    color: #50575e;
    pointer-events: none; /* Disable click for current page */
}

.tablenav .tablenav-pages .pagination-links a.button:hover:not(.current) {
    background: #f0f0f0;
    border-color: #a0a5aa;
    color: #006799;
}

.tablenav .pagination-links a.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.sort-indicator {
    font-size: 12px;
    margin-left: 5px;
    color: #555;
} 