
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,700&family=Oswald:wght@400;700&display=swap');

 
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
 

* {
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;

}

.app {
    background-color: #6f4990;
    display: flex;
}

.side-bar {
    background-color: #48206b;
    height:100%;
    min-height: 100vh;
    width: 244px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.main {

      height:100%;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    padding: 10px;
}

button {
    border: solid 0.5px rgba(255, 255, 255, 0.5);
    background-color: transparent;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
}

nav {
    border-top: solid 0.5px rgba(255, 255, 255, 0.5);
    padding: 10px;
    margin: 10px;
}

.history {
    padding: 10px;
    margin: 10px;
    height: 100%;
}

.history li {
    list-style-type: none;
    padding: 15px 0;
    cursor: pointer;
}

.bottom-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-container {
    position: relative;
    width: 100%;
    max-width: 650px;
}

input, textarea {

    width: 100%;
    border: none;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 54px 55px,
    rgba(0, 0, 0, 0.05) 0 -12px 30px,
    rgba(0, 0, 0, 0.05) 0 4px 6px,
    rgba(0, 0, 0, 0.05) 0 12px 3px,
    rgba(0, 0, 0, 0.05) 0 -3px 5px;
    font-size: 20px;
}

input:focus, textarea:focus {
    outline: none;

}

.submit {
    position: absolute;
    bottom: 15px;
    right: 0;
    cursor: pointer;
      padding-right: 10px;
}

#myModal {
    width: 80%;
}

ul#feed {
    width: 90%;
    padding: 30px;
    margin: 30px;
      height: 100%;
}

.message {
    padding: 10px;
}
#user-essay {
  width: 100%; /* Set the input width to 100% to make it fill the container initially */
  box-sizing: border-box; /* Include padding and border in the width */
  word-wrap: break-word; /* Allow words to break and wrap to the next line */
  resize: none; /* Disable resizing of the textarea */
}
