.host-seat, .highlight-seat {
  border: 5px solid #ea3b06!important;}

.btn {
    border-radius: 40rem;
}

@media screen and (max-width: 767px) {
    .sidebar.attendee-navbar {
      margin-top:130px;
  }
}

@media screen and (max-width: 767px) {
    .sidebar.admin-navbar {
        margin-top: 130px;
    }
}



@media screen and (max-width: 767px) {
    /* 1. Convert only tagged responsive tables to block/card layout */
    .responsive-card-table,
    .responsive-card-table tbody,
    .responsive-card-table tr,
    .responsive-card-table td {
        display: block;
        width: 100%;
    }

    /* 2. Hide the traditional table headers */
    .responsive-card-table thead {
        display: none;
    }

    /* 3. Style rows as individual cards */
    .responsive-card-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    /* 4. Clean up cells and force text to wrap naturally */
    .responsive-card-table td {
        border: none !important;
        padding: 8px 0 !important;
        text-align: left !important;
        white-space: normal !important;
        position: relative;
        clear: both; 
    }

    /* 5. Add dynamic context labels to normal text rows */
    .responsive-card-table td:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        display: block;
        margin-bottom: 4px;
        color: #333;
    }

    /* 6. Fix: Stop the star rating from floating next to text fields */
    .startup-card-rating {
        float: none !important;
        display: block;
    }

    /* 7. Fix: Prevent the calendar dropdown menu from shifting off-screen */
    .responsive-card-table td .dropdown-menu {
        margin-left: 0 !important;
        left: 0 !important;
        right: auto !important;
    }

    /* 8. ADJUSTED ACTIONS: Make it a flex row that allows wrapping underneath the label */
    .responsive-card-table td[data-label="Actions"],
    .responsive-card-table td[data-label="Moderate"] {
        display: flex !important;
        flex-wrap: wrap !important; /* Allows items to drop below the 100% width label */
        justify-content: flex-start !important;
        align-items: center !important; 
        gap: 10px !important; /* Controls spacing between the buttons */
        border-top: 1px solid #eee !important;
        margin-top: 12px;
        padding-top: 15px !important;
    }

    /* 9. ADJUSTED ACTIONS: Force the label to take up the full top row */
    .responsive-card-table td[data-label="Actions"]:before,
    .responsive-card-table td[data-label="Moderate"]:before {
        width: 100% !important;
        display: block !important;
        margin-bottom: 6px !important;
    }

    /* 10. Clean up alignment for the buttons sitting on the new row */
    .responsive-card-table td[data-label="Actions"] .pull-left {
        display: inline-flex !important;
        align-items: center !important;
        float: none !important;
    }

    .responsive-card-table td[data-label="Actions"] .pull-left a {
        margin-top: 0 !important; /* Keeps "Leave" perfectly centered with the buttons */
    }

    .responsive-card-table td[data-label="Actions"] .dropdown,
    .responsive-card-table td[data-label="Actions"] .dropdown.cal-dropdown {
        float: none !important;
        margin: 0 !important;
        width: auto !important;
        display: inline-block !important;
    }

    .responsive-card-table td[data-label="Moderate"] form {
        display: inline-block !important;
        margin: 0 !important;
    }
}