/*
    Created: 2025-09-08
    Author: Kārlis Grīnvalds
    Last edited: 2025-12-17
    Edited by: Kārlis Grīnvalds
*/

/* Used for - create_entry.html, entry.html */

/* Style for the form */
.form {
    width: 100%;
    display: inline-grid;
    row-gap: 4px;
}
/* Style for input fields */
.form input {
    border: solid 2px rgb(61, 105, 74);
    border-radius: 2px;
    padding: 5px;
    height: 16px;
}
.form textarea {
    border: solid 2px rgb(61, 105, 74);
    border-radius: 2px;
    padding: 5px;
    min-height: 500px;
    resize: none;
}