        /* Basic button styles */
        .tab-button {
            padding: 10px 15px;
            /* border: none;
            background-color: lightgray; */
            cursor: pointer;
            margin: 5px;
            font-size: 16px;
			border: 1px solid orange;
        }

        /* Active button style */
        .tab-button.active {
            background-color: #FFA500;
            color: dodgerblue;
            font-weight: bold;
			border: 1px solid orange;
        }

        /* Content area 
        #content {
            margin-top: 20px;
            padding: 20px;
            border: 1px solid #ccc;
            min-height: 100px;
        }*/