.registers-node-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
}
.capacity-text {
    margin-bottom: 10px;
    color: #101074;
}
.nid-label,
.status-label,
.status2-label {
    margin-left: 10px;
}
.search-button {
    margin-left: 10px;
}
.filter-form {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}
.form-item {
    display: flex;
    align-items: center;
    margin: 0 !important;
}
/* Registers Table Styles */
.registers-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    direction: rtl;
    text-align: right;
}

.registers-table .ltr {
    direction: ltr;
}
.filter-form .button,
input[type="submit"].button {
    background-color: #41b883;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-right: 4px;
    box-shadow: 0 2px 8px rgba(65,184,131, 0.09);
    outline: none;
    margin: 0;
}

.filter-form .button:hover,
input[type="submit"].button:hover,
.filter-form .button:focus,
input[type="submit"].button:focus {
    background-color: #348966;
    color: #fff;
    box-shadow: 0 2px 10px rgba(52,137,102,0.16);
}


.registers-table .register-status-empty {
    background-color: #f5f5f5 !important;
}

.registers-table .register-status-registered {
    background-color: #fbe8e8 !important;
}

.registers-table .register-status-paid {
    background-color: #f0fcef !important;
}

.registers-table a {
    color: #0073aa;
    text-decoration: none;
}

.registers-table a:hover {
    text-decoration: underline;
}

 .registers-table thead {
    background-color: #f5f5f5;
}

.registers-table th {
    padding: 12px;
    text-align: right;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
}

.registers-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.registers-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.registers-table tbody tr:hover {
    background-color: #f0f0f0;
}

.registers-table tbody tr.inactive-session {
    background-color: #ffe6e6;
    opacity: 0.8;
}

.registers-table tbody tr.inactive-session:hover {
    background-color: #ffcccc;
}

.registers-table a {
    color: #0073aa;
    text-decoration: none;
}

.registers-table a:hover {
    text-decoration: underline;
}

/* Pagination Styles */
.pagination-info {
    margin: 20px 0;
    padding: 10px;
    text-align: right;
    direction: rtl;
    font-size: 14px;
}

.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    direction: rtl;
    flex-wrap: wrap;
    gap: 5px;
}

.pager .pager-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #0073aa;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.pager .pager-link:hover {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.pager .pager-current {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #0073aa;
    background-color: #0073aa;
    color: #fff;
    border-radius: 3px;
    font-weight: bold;
}

.pager .pager-ellipsis {
    display: inline-block;
    padding: 8px 5px;
    margin: 0 2px;
    color: #666;
}

.pager .pager-previous,
.pager .pager-next {
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .registers-table {
        font-size: 12px;
    }

    .registers-table th,
    .registers-table td {
        padding: 8px;
    }

    .pager {
        gap: 3px;
    }

    .pager .pager-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}


.quick-links a.tickets { float: left; }