html {
    height: 100%;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#app {
    position: relative;
    max-width: calc(100% - 100px);
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    padding: 0;
    background-color: #EEE4B1;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: calc(100% - 200px); /* Adjusted height to accommodate reduced padding */
    overflow: hidden;
}

h1 {
    margin: 0;
    text-align: center;
}

#heading-row {
    background-color: #A8CD9F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

#downloadButton {
}

#fileSizeTooltip {
    position: fixed;
    bottom: 50px;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: block;
}

textarea {
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    padding: 50px;
    box-sizing: border-box;
    margin: 0;
    border: none;
    outline: none;
    resize: none;
    background-color: rgba(255, 255, 255, 0);
    font-size: 20px;
    line-height: 1.5;
    color: #000;
}

button {
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    cursor: pointer;
}

#noteList {
    margin-top: 10px;
}

.note {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#infoSection {
    text-align: center;
    color: white;
    padding: 30px 0; /* Adjusted padding to create 50px total space with the yellow container */
    font-size: 14px;
    margin-top: 10px; /* This creates the additional space needed between the yellow container and infoSection */
}


#infoSection p {
    margin: 5px 0; /* Add some spacing between the lines */
    color: inherit; /* Inherit the color from #infoSection */
}

#infoSection a {
    color: white;
    text-decoration: underline;
}

#infoSection a:hover {
    text-decoration: underline; /* Optional: add underline on hover */
}
