        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            padding: 10px;
            margin: 0;
        }

        .search-container {
            text-align: center;
            margin-bottom: 18px;
        }

        #searchInput {
            width: 80%;
            max-width: 600px;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }

        .staff-list, .table-view {
            max-width: 1200px;
            margin: 0 auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .staff-member {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 8px;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            margin-bottom: 20px;
        }

        .staff-member.full-width {
            width: 100%;
            margin: 0 auto;
        }

        .staff-logo {
            width: 120px;
            height: 120px;
            margin-bottom: 0px;
        }

        .staff-info {
            padding: 0px;
        }

        .name {
            font-size: 12px;
        }

        .position {
            color: gray;
            font-size: 12px;
            margin-bottom: 0;
        }

        .phone {
            color: #555;
            font-size: 12px;
            margin-bottom: 0;
        }

        /* Media Queries for Responsiveness */
        @media (min-width: 768px) {
            .staff-member {
                width: calc(50% - 20px); /* Two staff members per row on medium screens */
                margin-right: 20px;
            }

            .row {
                justify-content: space-between;
            }
        }

        @media (min-width: 1024px) {
            .staff-member {
                width: calc(16.66% - 20px); /* Six staff members per row on large screens */
                margin-right: 20px;
            }

            .staff-member.full-width {
                width: calc(100% - 20px);
            }

            .search-container {
                margin-bottom: 30px;
            }
        }
        
        /* Extra small screens (mobile) */
        @media (max-width: 767px) {
            .staff-member {
                width: calc(100% - 20px); /* Full width for small screens */
                margin-right: 0;
            }

            #searchInput {
                width: 90%;
            }
        }

        /* Tabular View Styles */
        .table-view {
            display: none;
        }

        .table-view table {
            width: 100%;
            border-collapse: collapse;
        }

        .table-view th, .table-view td {
            padding: 6px;
            border: 1px solid #ddd;
            text-align: left;
        }

        .table-view th {
            background-color: #f4f4f4;
        }

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

        .view-button {
            display: inline-block;
            padding: 10px 20px;
            margin-bottom: 20px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .view-button:hover {
            background-color: #0056b3;
        }