﻿
.custom-textbox {
    border: 1px solid #8CA8AD; /* Blue-teal border color */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Drop shadow */
    width: 100%; /* Make the box take up 100% of the container's width */
    height: 100%; /* Make the box take up 100% of the container's height */
    box-sizing: border-box; /* Ensures padding and border are included in the width/height */
    background-color: #f9f9f9; /* Light background color */
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    
}