
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color:whitesmoke;
            overflow-x:hidden;
        }

        header {
            background-color: #f79d21;
            color: white;
            text-align: center;
            padding: 0.5em;
            margin-right: 0 !important;
        }
        header h4{
            text-align: right;
            padding-right: 10px;
            margin:10px;
        }

        nav {
            background-color: #555;
            color: white;
            padding: 1em;
        }

        form {
          margin-bottom: 20px;
        }
        
        label {
          display: block;
          margin-bottom: 8px;
        }
        select {
          width: 100%;
          padding: 8px;
          margin-bottom: 16px;
        }
        input,
        textarea {
          width: 100%;
          padding: 8px;
          margin-bottom: 10px;
        }
        
        button {
          background-color: #4caf50;
          color: white;
          padding: 10px 15px;
          border: none;
          cursor: pointer;
        }
        
        button:hover {
          background-color: #45a049;
        }
        
        ul {
          list-style-type: none;
          padding: 0;
        }
        
        li {
          margin-bottom: 10px;
        }
        .div-center{
          text-align: center;
        }
        
        .div-right{
          text-align: right;
        }
        
        .div-left{
          text-align: left;
        }
        
        .container {
            display: flex;
            /*flex-wrap: wrap;*/
            justify-content: space-around;
            padding: 2em;
        }
        .form-container {
          display: flex;
          justify-content: space-between; /* Adjust this property to control the spacing between forms */
          margin: 20px;
        }
        .form {
          width: 45%; /* Adjust the width of the forms as needed */
          padding: 20px;
          border: 1px solid #ccc;
          border-radius: 8px;
          margin-bottom: 20px;
          margin-right: 5%;/* Add space between forms */
          float: left;
          
        }

        .input-container {
            display: flex;
            gap: 10px;
        }
        .clear {
          clear: both;
        }
        .card {
            max-width: 100%;
            margin: 1em;
            padding: 1em;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .card p{
            color: Black;
            text-align: center;
            font-size:2rem;
        }
        .open-close-btn-main{
            font-size:35px;
            cursor:pointer;
            margin:10px;
            display:flex;
        }
        #row.row-top-banner{
            margin-right:0 !important;
        }
        
        @media only screen and (min-width: 600px) and (max-width: 999px) {
            header h4{
                text-align: right;
                padding-right: 0px;
                margin:10px;
            }
            .card {
                max-width: 100%;
            }
            .col-top-banner-title{
                flex-basis:auto;
            }
            body {
                overflow-x: hidden;
            }
            html {
                overflow-x:hidden;
            }
            .form {
            width: 100%; /* Set width to 100% on small screens */
            margin-right: 0; /* Remove margin between stacked forms */
            }
            .mobile-hide {
                display:none;
            }
        }
        
        /* Phones (portrait and landscape) */
        @media only screen and (max-width: 599px) {
            header h4{
                text-align: right;
                padding-right: 0px;
                margin:10px;
            }            
            .card {
                max-width: 100%;
            }
            .col-top-banner-title{
                flex-basis:auto;
            }
            body {
                overflow-x: hidden;
            }
            html {
                overflow-x:hidden;
            }
            .form {
                width: 100%; /* Set width to 100% on small screens */
                margin-right: 0; /* Remove margin between stacked forms */
            }
            .mobile-hide {
                display:none;
            }
    
        }