#announcement-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Distribute buttons and text */
    padding: 0.5em 1em;
    width: 100%;
    background-color: white;
    overflow: hidden;
    position: relative;
    height: 3em;
    box-sizing: border-box;
}

#prev-btn,
#next-btn {
    background-color: #000;
    color: #40b2cf;
    border: none;
    padding: 0.4em 0.8em;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 5px;
    flex-shrink: 0;
}

#prev-btn:hover,
#next-btn:hover {
    background-color: #40b2cf;
    color: #000;
}

#changeText {
    flex-grow: 1;
    margin: 0 1em;
    align-content: center;
    text-align: center;
    font-size: 1rem;
    color: #FF6C00;
    word-wrap: break-word;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    height: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: opacity 0.5s ease-in-out;
}

.hide_fade {
    opacity: 0 !important;
}





/* Modal container */
.occ-modal-container {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,
            0,
            0,
            0.7);
    /* Darker overlay to enhance focus on modal */
    z-index: 9998;
    /* Just below the modal */
    opacity: 0;
    /* Start with opacity 0 */
    transition: opacity 0.3s ease;

    /* Fade-in effect for the overlay */
    &.show {
        display: block;
        opacity: 1;
        /* Set opacity to 1 when modal is shown */
    }




    /* Modal content styles */
    .occ-modal {
        background-color: #f1f1f1;
        margin: 5% auto;
        padding: 25px;
        border: 1px solid #dcdcdc;
        width: 80%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        z-index: 9999;
        border-radius: 8px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;

        /* Style the form fields */
        .occ-modal-form-field {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            justify-content: center;
            overflow: visible;
        }
    }

    /* Label styles */
    .occ-modal-form-field {
        label {
            padding-right: 10px;
            width: 25%;
            box-sizing: border-box;
            text-align: right;
            align-self: center;
        }

        /* Input field styles */
        input,
        select,
        textarea {
            width: 50%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .time-container {
            width: 50%;
            box-sizing: border-box;
        }

        textarea {
            min-height: 80px;
            resize: vertical;
            /* Allows user to expand vertically */
        }
    }

    /* Button styles */
    .occ-modal-form-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 20px;
    }

    .occ-modal-button {
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 5px;
        cursor: pointer;
        width: 48%;
        /* Buttons take up half the width */
    }

    .occ-modal-button-cancel {
        background-color: #f44336;
        /* Red for Cancel */
        color: white;
        border: none;

        &:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            pointer-events: none;
            /* Optionally, adjust color or background */
            background-color: #7a2c27;
            color: #b3b2b2;
        }
    }

    .occ-modal-button-submit {
        background-color: #4caf50;
        /* Green for Submit */
        color: white;
        border: none;

        &:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            pointer-events: none;
            /* Optionally, adjust color or background */
            background-color: #48724a;
            color: #b3b2b2;
        }
    }
}

.event-details-container {
    display: flex;
    flex-direction: column;
    /* Make this container a column */
    gap: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-title {
    margin-bottom: 10px;
    text-align: left;
    /* Center align the title */
    font-size: 1.5em;
    /* Larger font size for the title */
    font-weight: bold;
    /* Make the title bold */
}

.event-details-fields-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.event-details-left,
.event-details-right {
    flex: 1;
}

.event-details-left p,
.event-details-right p {
    margin: 5px 0;
}


.profile-selector,
.editable {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

/*For Dog Details, vaccination class track Tables*/
.dog-details-table,
.vaccination-table,
.tableclasstracks {
    width: 100%;
    margin: 0 auto;
    /* Center the table */
    border-collapse: collapse;
    table-layout: fixed;

    /* Ensure columns take equal width */
    border: 1px solid #ddd;
    /* Light border around the table */
    font-family: Arial, sans-serif;
    /* Improved readability */
}

/* Table headers */
.dog-details-table th,
.vaccination-table th,
.tableclasstracks th {
    background-color: #40B2CF;
    /* Background for header */
    padding: 5px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    /* Bottom border for the header */

}

/* Table cells */
.dog-details-table td,
.vaccination-table td,
.tableclasstracks td {
    width: 50%;
    /* Ensure each cell takes half the row width */
    padding: 2px;
    /* Adjust padding to control spacing */
    text-align: center;
    vertical-align: middle;


}

/* Alternate row colors for better readability */
.dog-details-table tr:nth-child(even),
.vaccination-table tr:nth-child(even),
.tableclasstracks tr:nth-child(even) {
    background-color: #f9f9f9;

}

/* Hover effect for rows */
.dog-details-table tr:hover,
.vaccination-table tr:hover,
.tableclasstracks tr:hover {
    background-color: #f1f1f1;
}

/* General styling for input fields, including date pickers */
.dog-details-table input[type="date"],
.vaccination-table input[type="date"],
.tableclasstracks input[type="date"] {
    width: 100%;
    /* Make input fields take up full width of the cell */
    padding: 8px;
    /* Add some padding for better visual spacing */
    border: 1px solid #ddd;
    /* Light border for the input fields */
    border-radius: 4px;
    /* Rounded corners for the input fields */
    box-sizing: border-box;
    /* Ensures padding is included in the total width */
    font-size: 14px;
    /* Font size for readability */
    background-color: #fff;
    /* White background for the input fields */
    color: #333;
    /* Text color for the input fields */
}

/* Focus state to improve UX */
.dog-details-table input[type="date"]:focus,
.vaccination-table input[type="date"]:focus,
.tableclasstracks input[type="date"]:focus {
    border-color: #007bff;
    /* Border color when focused */
    outline: none;
    /* Remove default outline */
    background-color: #f9f9f9;
    /* Slight background change for focus */
}


/* Responsive Design: Adjust for smaller screen sizes */
@media (max-width: 768px) {

    .event-details-fields-container {
        flex-direction: column;
        /* Stack the columns on mobile */
    }

    .event-details-left,
    .event-details-right {
        flex: none;
        width: 100%;
        /* Take full width on mobile */
    }

    .occ-modal {
        width: 90%;
        /* Take up most of the screen on smaller devices */
        padding: 15px;
    }

    .occ-modal-form-buttons {
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 10px;
    }

    .occ-modal-button {
        width: 100%;
        /* Buttons take full width on small screens */
    }

    .occ-modal-form-field input,
    .occ-modal-form-field select,
    .occ-modal-form-field label,
    .dog-details-table,
    .vaccination-table,
    .tableclasstracks,
    .dog-details-table td,
    .vaccination-table td,
    .tableclasstracks td {
        font-size: 14px;
    }

    .dog-details-table th,
    .vaccination-table th,
    .tableclasstracks th {
        font-size: 16px;
        text-align: center;
        /* Center header text on smaller screens */

    }

    .dog-details-table,
    .vaccination-table,
    .tableclasstracks {
        display: block;
        overflow-x: auto;
    }

    .dog-details-table thead,
    .vaccination-table thead,
    .tableclasstracks thead {
        display: block;
        /* Keep headers fixed at the top */
    }

    .dog-details-table tbody,
    .vaccination-table tbody,
    .tableclasstracks tbody {
        display: block;
        max-height: 300px;
        /* Limit height to make scrolling more accessible */
        overflow-y: auto;
        /* Enable vertical scroll */
    }

    /* Adjust table width and improve scrolling */
    .dog-details-table td,
    .vaccination-table td,
    .tableclasstracks td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Adjust borders for mobile view */
    .dog-details-table td,
    .vaccination-table td,
    .tableclasstracks td {
        border-bottom: 1px solid #ccc;
        text-align: center;
        vertical-align: middle;
        padding: 5px;
    }

    .dog-details-table input[type="date"],
    .vaccination-table input[type="date"],
    .tableclasstracks input[type="date"] {
        width: 100%;
        /* Ensure full-width on smaller screens */
        font-size: 14px;
        /* Adjust font size for mobile */
        padding: 10px;
        /* Adjust padding for mobile */
    }



    #announcement-banner {
        height: 4.5em;
    }

    #changeText {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .profile-filter-row {
        flex-direction: column;
    }

    .filter-group {
        flex: 1 1 100%;
    }

    .clear-button-group {
        align-self: stretch;
    }

    .occ-tab-table-nav {
        justify-content: left;
    }

    .occ-tab-table {
        min-width: 100px;
    }

    .occ-tab-table th,
    .occ-tab-table td,
    .occ_table th,
    .occ_table td,
    .stylizedButton.buttonStyle002 {
        font-size: 12px;
        padding: 8px 12px;
    }

    .occ_form input,
    .occ_form select,
    .occ_form button,
    .occ_form #cancelButton {
        padding: 12px;
        font-size: 12px;
        width: 100%;
    }

    .occ_form button,
    .occ_form #cancelButton {
        padding: 12px;
        font-size: 12px;
        width: 100%;
    }

    .occ-tab-table .edit-button,
    .occ_table .edit-button,
    .stylizedButton.buttonStyle002 {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {

    #prev-btn,
    #next-btn {
        font-size: 1.1em;
    }


    .occ-tab-table th,
    .occ-tab-table td,
    .occ_table th,
    .occ_table td,
    .stylizedButton.buttonStyle002 {
        font-size: 12px;
        padding: 6px 10px;
    }

    .stylizedButton.buttonStyle002 {
        font-size: 12px;
        padding: 6px;
        height: auto;
    }

    .occ-modal {
        width: 95%;
        /* Even more space on the smallest devices */
        padding: 10px;
    }

    .occ-modal-form-buttons {
        flex-direction: column;
    }

    .occ-modal-button {
        width: 100%;
        font-size: 14px;
        /* Slightly smaller font size for buttons */
    }

    .occ-modal-form-field input,
    .occ-modal-form-field select {
        font-size: 13px;
        /* Adjust input font size for very small screens */
    }

    .occ-modal-form-field label {
        font-size: 13px;
        /* Adjust label font size */
    }

    .dog-details-table,
    .vaccination-table,
    .tableclasstracks {
        font-size: 12px;
    }

    .dog-details-table th,
    .vaccination-table th,
    .tableclasstracks th {
        font-size: 14px;
    }

    .dog-details-table td,
    .vaccination-table td,
    .tableclasstracks td {
        padding: 6px 8px;
    }

    .dog-details-table input[type="date"],
    .vaccination-table input[type="date"],
    .tableclasstracks input[type="date"] {
        font-size: 12px;
        /* Reduce font size on small screens */
        padding: 8px;
        /* Adjust padding for mobile */
    }
}

.table-header {
    background-color: #40B2CF;
    padding: 12px;
    text-align: left;
    font-size: 18px;
    color: #FFFFFF;
}

.table-cell,
.tableclasstracks td {
    padding: 4px;
    border: 1px solid #ddd;
    text-align: center;
    word-wrap: break-word;
    vertical-align: middle;
}

/* Global CSS for the OCC Dog Club Table */
.occ_table {
    width: auto;
    border-spacing: 2px;
    border-color: gray;
    min-width: 940px;
    margin-top: 20px;
    border-collapse: collapse;
    table-layout: auto;
    overflow-x: auto;
    margin-left: auto;
    /* Center horizontally */
    margin-right: auto;
    /* Center horizontally */
    /* Let columns adjust based on content */
}

.occ_table th {
    background-color: #95AB63;
    font-weight: bold;
    padding: 4px;
    font-size: 18px;
    border: 1px solid #ddd;
    text-align: center;
    word-wrap: break-word;
    vertical-align: middle;
}

.occ_table td {
    padding: 4px;
    font-size: 16px;
    border: 1px solid #ddd;
    text-align: center;
    word-wrap: break-word;
    vertical-align: middle;
}

/* Alternate row colors */
.occ_table tr:nth-child(even) {
    background-color: rgb(149, 171, 99);
}

.occ_table tr:nth-child(odd) {
    background-color: rgb(255, 255, 255);
}


/* Sticky effect for specific tables */
.occ_table-sticky td:first-child,
.occ_table-sticky th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    /* Ensure the frozen column is above other content */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);

    /* Ensure text wraps inside the column */
    word-wrap: break-word;
    white-space: normal;
}

.occ_table-sticky th {
    position: sticky;
    top: 0;
    /* Sticks the header row at the top */
    z-index: 2;
    /* Ensure the header row is above the sticky column */
    background-color: #f5f5f5;
    /* Optional: Add a background color for visibility */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional: Add a shadow for better visibility */
}

/* Add fading shadow to the first column */
.occ_table-sticky td:first-child::after,
.occ_table-sticky th:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    /* Position the shadow just outside the sticky column */
    width: 2px;
    /* Adjust the width of the shadow */
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    /* Fades the shadow */
    pointer-events: none;
    /* Prevent interaction with the shadow */
    z-index: 1;
    /* Place it below other elements but above the table background */
}

/* Apply alternating colors to sticky column */
.occ_table-sticky tr:nth-child(even) td:first-child {
    background-color: rgb(149, 171, 99);
}

.occ_table-sticky tr:nth-child(odd) td:first-child {
    background-color: rgb(255, 255, 255);
}



.occ_table .edit-button {
    padding: 5px 10px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.occ_table .edit-button:hover,
.occ_table .edit-button:focus {
    background-color: #2980b9;
    outline: none;
}

.occ_table select {
    width: 100%;
    height: 100%;
    padding: 2px;
    font-size: 16px;
    box-sizing: border-box;
}

.occ_table .short-dropdown {
    min-width: 85px;
}

.occ_table .medium-dropdown {
    min-width: 155px;
}

.occ_table .long-dropdown {
    min-width: 225px;
}

/* Grey Button Styles */

.stylizedButton.buttonStyle002 {
    display: inline-block;


    padding: 10px 15px;

    font-size: 16px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: white;
    background-color: #888;
    /* Default background color */
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    width: 90%;
    /* Responsive width */
    max-width: 300px;
    /* Limit the maximum width */
    text-align: center;
    word-wrap: break-word;
}

.stylizedButton.buttonStyle002:hover {
    background-color: #555;
    /* Darker on hover */
    transform: scale(1.05);
    /* Slightly larger on hover */
}

/* Full-width Button (Fair Play Fridays) */
.fullWidthButton {
    width: 95%;
    /* Takes up the majority of the row width */
    display: block;
    margin: 0 auto;
    /* Center the button */
}

/* Full-width Button (Fair Play Fridays) */
.fullWidthCell {
    padding: 10px 0;
}

/* Generic form styles */
.occ_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.occ_form label {
    font-weight: bold;
}

.occ_form input,
.occ_form select {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.occ_form button,
.occ_form #cancelButton {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.occ_form button {
    background-color: #3498db;
    color: white;
    border: none;
}

.occ_form button:hover,
.occ_form button:focus {
    background-color: #2980b9;
    outline: none;
}

.occ_form #cancelButton {
    background-color: #e74c3c;
}

.occ_form #cancelButton:hover,
.occ_form #cancelButton:focus {
    background-color: #c0392b;
    outline: none;
}

/* Ensure the iframe container fills the available space */
.occ_iframes {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    position: relative;
}

.occ_iframes iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Session Date table styling */
.session-date-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #333;
}

.session-date-table td {
    padding: 10px;
    color: #FFFFFF;
    background-color: #333;
}

/* Ensure no parent container is clipping the form */
.container {
    overflow: visible;
    min-height: 100vh;
}



/*Fix green buttons to make them round and pretty*/

.stylizedButton.buttonStyle003 {
    border-radius: 50px;
    /* Adjust the value for desired roundness */
    padding: 10px 20px;
    /* Optional: Adds spacing inside the button */
    border: none;
    /* Optional: Removes default borders */
    transition: all 0.3s ease;
    /* Adds smooth transition for hover effects */
}

.stylizedButton.buttonStyle003:hover {
    background-color: #007bff;
    /* Optional: Change hover background color */
    color: white;
    /* Optional: Change text color on hover */
    transform: scale(1.05);
    /* Optional: Slightly enlarge the button on hover */
}

/*Fix white buttons to make them round and pretty*/

.stylizedButton.buttonStyle001 {
    border-radius: 50px;
    /* Adjust the value for desired roundness */
    padding: 10px 20px;
    /* Optional: Adds spacing inside the button */
    border: none;
    /* Optional: Removes default borders */
    transition: all 0.3s ease;
    /* Adds smooth transition for hover effects */
}

.stylizedButton.buttonStyle001:hover {
    background-color: #28a745;
    /* Optional: Change hover background color */
    color: white;
    /* Optional: Change text color on hover */
    transform: scale(1.05);
    /* Optional: Slightly enlarge the button on hover */
}

/*Profile Buttons to orange */

.profile-buttons {
    background-color: #FF6C00;
    /* Button color */
    color: white;
    /* Text color */
    border: none;
    /* Remove border */
    padding: 10px 20px;
    /* Adjust button size */
    font-size: 16px;
    /* Font size */
    cursor: pointer;
    /* Change cursor on hover */
    border-radius: 5px;
    /* Optional: rounded corners */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover */
}

.profile-buttons:hover {
    background-color: #e65c00;
    /* Darker shade on hover */
}

.profile-buttons:disabled {
    background-color: #cccccc;
    /* Greyed-out background for disabled button */
    color: #666666;
    /* Text color for disabled button */
    cursor: not-allowed;
    /* Change cursor to indicate non-clickable */
}

.profile-buttons:disabled:hover {
    background-color: #cccccc;
    /* Ensure no hover effect when disabled */
}


/* occ_spinner styles */
.occ_spinner {
    border: 4px solid #95ab63;
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin-left: 10px;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.occ-checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 5px 0;
    margin-top: 10px;
}

.occ-checkbox-row label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Tab Table Container */
.occ-tab-table-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Tab Navigation Bar */
.occ-tab-table-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    position: sticky;
    overflow-x: auto;
}

/* Tab Button Style */
.occ-tab-table-button {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #95AB63;
    color: white;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active Tab Button */
.occ-tab-table-button.active {
    background-color: #3498db;
    color: white;
}

/* Tab Button Hover Effects */
.occ-tab-table-button:hover,
.occ-tab-table-button:focus {
    background-color: #2980b9;
    outline: none;
}

/* Tab Content Container */
.occ-tab-table-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: auto;
}

/* Tab Content */
.occ-tab-table-content {
    display: none;
    width: 100%;
}

/* Show active tab content */
.occ-tab-table-content.active {
    display: block;
}

/* Header for single tab (if there's only one tab) */
.occ-tab-table-header {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background-color: #3498db;
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Table Styling */
.occ-tab-table {
    width: auto;
    border-spacing: 2px;
    border-color: gray;
    min-width: 940px;
    border-collapse: collapse;
    table-layout: auto;
    overflow-x: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styling (for tables within tabs) */
.occ-tab-table th {
    background-color: #95AB63;
    width: auto;
    font-weight: bold;
    padding: 4px;
    font-size: 18px;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
}

/* Table Cell Styling */
.occ-tab-table td {
    padding: 4px;
    width: auto;
    font-size: 16px;
    border: 1px solid #ddd;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
    max-width: 250px
}

/* Alternating Row Colors */
.occ-tab-table tr:nth-child(even) {
    background-color: rgb(149, 171, 99);
}

.occ-tab-table tr:nth-child(odd) {
    background-color: rgb(255, 255, 255);
}

/* Sticky Table Column (if needed) */
.occ-tab-table-sticky td:first-child,
.occ-tab-table-sticky th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.occ-tab-table-sticky tr:nth-child(even) td:first-child {
    background-color: rgb(149, 171, 99);
}

.occ-tab-table-sticky tr:nth-child(odd) td:first-child {
    background-color: rgb(255, 255, 255);
}

/* Edit Button Styling within tables */
.occ-tab-table .edit-button {
    padding: 5px 10px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

/* Hover and Focus Effects for Edit Button */
.occ-tab-table .edit-button:hover,
.occ-tab-table .edit-button:focus {
    background-color: #2980b9;
    outline: none;
}

/* Dropdown Styles within Tables */
.occ-tab-table select {
    width: auto;
    height: 100%;
    padding: 2px;
    font-size: 12px;
    box-sizing: border-box;
}

.occ-tab-table date {
    width: auto;
    height: 100%;
    padding: 2px;
    font-size: 12px;
    box-sizing: border-box;
}

.occ-tab-table .occ-long-text {
    width: auto;
    height: 100%;
    padding: 2px;
    font-size: 12px;
    box-sizing: border-box;
    max-width: inherit;
    min-width: 99%;
    max-height: inherit;
    min-height: fit-content;
    resize: vertical;
}

.occ-tab-table .occ-tab-table-time-cell {
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
    height: 100%;
    padding: 2px;
    font-size: 12px;
    box-sizing: border-box;
}

.occ-tab-table .occ-short-text {
    width: auto;
    height: 100%;
    padding: 2px;
    font-size: 12px;
    box-sizing: border-box;
}

.occ-tab-table .short-dropdown {
    min-width: 85px;
}

.occ-tab-table .medium-dropdown {
    min-width: 155px;
}

.occ-tab-table .long-dropdown {
    min-width: 225px;
}


/* Style for the normal horizontal table */
.rtable {
    width: 100%;
    border-collapse: collapse;
}

.rtable th,
.rtable td {
    padding: 8px 12px;
    border: 1px solid #ddd;
}

/* Style for the flipped table */
.rtable--flip {
    display: block;
}

.rtable--flip thead {
    display: block;
}

.rtable--flip th {
    display: block;
    text-align: left;
    font-weight: bold;
}

.rtable--flip td {
    display: block;
    text-align: right;
    border-top: none;
}

.rtable--flip tr {
    display: flex;
    flex-direction: column;
}

.rtable--flip td:first-child {
    border-top: 1px solid #ddd;
}

/*social buttons on the homepage*/

.socialbuttons {
    padding: 1px 5px;
    /* Adjust the values as needed */
}

.profile-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
}

.clear-button-group {
    align-self: flex-end;
    flex: 1 1 14%;
}

.profile-filter-selector,
.profile-buttons {
    padding: 0.4rem;
    font-size: 1rem;
}