label {
            display: block;
            margin-bottom: 5px;
        }

        .input-row {
            display: flex;
            gap: 10px;
        }

        .input-box {
            flex: 1;
            max-width: 300px;
        }

        textarea {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }

        select {
            padding: 8px;
            box-sizing: border-box;
        }

        .checkbox-group {
            margin-top: 10px;
            display: flex;
        }

        .checkbox-group label {
            margin-right: 20px;
        }

        

        table {
            border-collapse: collapse;
            width: 100%;
            margin-top: 20px;
            display: none;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: #4CAF50;
            color: white;
        }

        .result-message {
            margin-top: 10px;
            font-weight: bold;
        }

        .button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }
		
		button {
      background-color: #4caf50;
      color: white;
      padding: 10px;
      border: none;
      cursor: pointer;
    }

    button:hover {
      background-color: #45a049;
    }
	
	.tool-btn-primary {
  color: #fff;
  background-color: #04AA6D;
  
}


.tool-btn-primary:hover {
  color: #fff;
background-color: #36454F;}

#copyButton {
      background-color: #405cf5;
      color: white;
      padding: 10px;
      border: none;
      cursor: pointer;
      margin-top: 10px;
    }

    #copyButton:hover {
      background-color: #36454F;
    }

    /* Add a class to hide the button initially */
    .hidden {
      display: none;
    }
  
  