    body {
            font-family:Arial;
            background-image:
                radial-gradient(circle at center, #ccc 1px, transparent 1px);
            background-size: 16px 16px;
            margin: 0;
            min-height: 100vh;
        }
    .insert-section {
      background-color: #fff;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 20px;
      max-width: 650px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .section-title {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .insert-button {
      background-color: #e0e0e0;
      border: none;
      padding: 8px 12px;
      border-radius: 0px;
      cursor: pointer;
      font-size: 14px;
    }

    .insert-button:hover {
      background-color: #4d6666;
    }
            input, textarea {
      width: 100%;
      max-width: 600px;
      margin-bottom: 15px;
      padding: 10px;
      font-size: 16px;
          width: 80%;
    border: none;
    font-family:Arial;
        }
.input-container{
    width: 250px;
    border: 1px solid #a9a9a9;
    display: inline-block;
        border-radius:10px;
        overflow:hidden;
     
           background-color:rgba(210,210,210,0.5);
}
.input-container:hover{
 background-color:rgba(250,250,250,1);
}
.input-container input:focus, .input-container input:active {
    outline: none;
}

.input-container input, {
    width: 90%;
    border: none;
    padding: 10px;
    box-sizing: border-box; /* Include padding in width calculation */
    min-height: 40px; /* Minimum height for textarea */
}

.input-container textarea {
background-color:#EFEFEF;
    resize: vertical; /* Allow vertical resizing only */
    max-height: 150px; /* Limit maximum height */
    line-height: 1.4; /* Better line spacing */
    width:92%;

}

.input-container input {
background-color:#EFEFEF;
    width: 92%;
    border: none;
}
.input-container button {
    font-size: 16px;
    float: right;
    width:100%;
    border: none;
       background: #7bff;
}
#breaker
{display:none;}     

@media screen and (max-width: 700px) {
#breaker
{display:block;}
.input-container {
    width: 600px;
    border: 1px solid #a9a9a9;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch; /* Changed to stretch to make button full height */
    height: auto; /* Allow container to grow with content */
    min-height: 40px; /* Minimum height for the container */

}

.input-container input,
.input-container textarea {
    flex: 1; /* Allow input/textarea to take available space */
    border: none;
    padding: 10px;
    box-sizing: border-box;
    min-height: 40px;
    resize: none; /* Remove default resize for input */
      margin-bottom: 0px;
}

.input-container input {
    width: auto; /* Remove the invalid 0% width */
    max-height:10px;
}

.input-container textarea {
    min-width:200px;
    resize: vertical; /* Only for textarea */
    max-height: 300px;
    line-height: ;
    flex: 1; /* Ensure textarea takes available space */
}

.input-container button {
    box-sizing: border-box;
    font-size: 20px;
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    display: flex;
   align-items: center; /* Center content vertically within button */
justify-content: center; /* Center content horizontally */
      flex-shrink: 1; /* Prevent button from shrinking */
   // white-space: nowrap; /* Prevent text wrapping */
}
}
