    /* Style the modal background overlay */
    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    }

    /* Style the modal dialog */
    .modal-dialog {
        max-width: 800px; /* Set the maximum width of the modal dialog */
    }

    /* Style the modal content */
    .modal-content {
        background-color: #f0f0f0; /* Background color for the modal content */
        border-radius: 10px; /* Rounded corners for the modal content */
    }

    /* Style the modal title */
    .modal-title {
        font-weight: bold; /* Make the modal title bold */
    }

    /* Style the modal header close button */
    .modal-header .close {
        color: #333; /* Color of the close button */
        font-size: 24px; /* Font size of the close button */
    }

    /* Style the modal footer */
    .modal-footer {
        border-top: none; /* Remove the top border of the modal footer */
    }

    /* Style the modal table */
    #spocTable {
        width: 100%; /* Set the table width to 100% */
    }

    /* Style the table header */
    #spocTable th {
        background-color: #007bff; /* Header background color */
        color: white; /* Header text color */
    }

    /* Style the table rows */
    #spocTable td {
        padding: 8px; /* Cell padding */
    }