        .container111 {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 15px;
            margin: 20px auto;
            width: 85%;
            background-color: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-top: 20px;
            margin-left: 100px;
        }

        .left-side {
            width: 50%;
            margin-left: 45px;
        }
        .right-side {
            width: 45%;
            margin-left: 150px;
        }
        .left-side p, .right-side p {
            margin: 10px 0;
            font-size: 18px;
        }

        .doctor-name {
            font-size: 25px !important;
            color: #33a8ff;
            margin-bottom: 15px;
        }

        .hospital-name {
            display: flex;
            align-items: center;
            font-size: 25px;
            color:#33a8ff ;
        }

        .hospital-address, .hospital-contact {
            margin-left: 60px;
        }

        .logo {
            height: 50px;
            width: 50px;
            margin-right: 10px;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 60%;
            height: 60%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.4);
            /* padding-top: 60px; */
            margin-top: -50px;
            
        }

        /* Modal Content */
        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
        }

        /* The Close Button */
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
