/* ============================================================
   TABS + SUBTABS — RED ACCENT
============================================================ */

.rc-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.rc-tabs a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.rc-tabs a.active {
    border-bottom: 3px solid #d60000;
    color: #d60000;
}



/* ============================================================
   UTILITIES + FIXES
============================================================ */


.rc-body {
    display: flex;
    gap: 30px;
}

.rc-content-area {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
}


/* Primary button */
.rc-primary {
    background-color: #0073aa;
    color: #fff;
}

.rc-primary:hover {
    background-color: #005f8d;
}

/* Danger button */
.rc-danger {
    background-color: #d32f2f;
    color: #fff;
}

.rc-danger:hover {
    background-color: #b71c1c;
}

/* Compact Event Manager table buttons */
td .rc-button-small {
    padding: 2px 6px;
    font-size: 11px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    height: auto;
    margin-right: 4px;
    white-space: nowrap;
}

/* Disabled state */
.rc-disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
}
