body{
    width: 90%;
    margin: 0px;
    margin: auto;
    background-color: rgb(230,230,221);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* Nav CSS Part Start*/

#nav{
    background-color: rgb(230,230,221);
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid black;
    margin-bottom: 50px;
}
#logo{
    margin-left: 20px;
    width: 150px;
}
#logo img{
    width: 100%;
    height: 100%;
}
#nav>#navButtons{
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
    margin-right: -25px;
}
#navButtons>div>a{
    font-size: 18px;
    color: black;
    font-weight:600;
    text-decoration:none;
}

/* Nav CSS Part End*/

/* Loader Styles */
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display: none;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


.container {
    display: flex;
    margin: 0 auto;
    padding: 20px;
}

.left,.right{
    width: 50%;
}
.input {
    flex: 1; /* Take up remaining space */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width:70%;
}

.non-editable-textarea {
    flex: 1; /* Take up remaining space */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: none; /* Prevent resizing of the textarea */
    background-color: rgb(230,230,221);
    width: 100%;
    height: 350px;
}

.status{
    display: flex;
    margin-top: 20px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}
input[type="submit"] {
    width: 60%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 15px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .container {
        align-items: center;
        flex-direction: column; /* Stack elements on smaller screens */
    }

    .input, .non-editable-textarea {
        width: 100%; /* Take full width on smaller screens */
    }
}

label{
    font-size: 20px;
}