
        .circle-image {
            width: 150px; /* Adjust size as needed */
            height: 150px;
            border-radius: 50%;
            border: 5px solid white; /* White border */
            overflow: hidden;
        }

        .circle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .google-form-container iframe {
            border: none;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .container {
            width: 80%;
            margin: 20px auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            border: 1px solid #000;
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #d9e8fc;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }