body {
    background-color: #def1f6;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    padding: 20px;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.fulltext {
    background-color: #ffffff;
    font-size: 1.5em;
    padding: 30px;
    margin: 80px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #0091b7;
    font-size: 3em;
    margin-bottom: 20px;
}

.form-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.input-field {
    display: block;
    width: 100%;
    max-width: 200px;
    padding: 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.submit-button {
    background: linear-gradient(135deg, #0091b7, #00c6ff);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 145, 183, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #00c6ff, #0091b7);
    box-shadow: 0 6px 20px rgba(0, 145, 183, 0.5);
}

.key-value-container {
    margin-top: 10px;

    input.private-input {
        width: 10rem;
    }

    input.key-input {
        width: 8rem;
    }

    input, button, select {
        margin: 0 .1rem !important;
    }

    button, input[type=checkbox] {
        cursor: pointer;
    }

    input[type=file] {
        margin: 0 .2rem !important;
    }

    input::file-selector-button {
        background: linear-gradient(135deg, #0091b7, #00c6ff);
        color: #ffffff;
        border: none;
        padding: 0.4rem;
        margin: .25rem;
        border-radius: .5rem;
        cursor: pointer;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px;
        font-size: 1em;
    }
}

.key-value-pair, .key-value-container-head {
    display: flex;
    border: 1px solid black;
    padding: 0.5rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.form-group .file-upload {
    display: flex;
    align-items: center;
}

.form-group .file-upload input[type="file"] {
    flex: 1;
}

.form-group .file-upload button {
    margin-left: 10px;
}

.collapsible {
    background-color: #f1f1f1;
    color: #111;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-weight: bolder;
    font-size: 15px;
}

.active, .collapsible:hover {
    background-color: #ccc;
}

.content {
    padding: 0 18px;
    display: block;
    overflow: hidden;
    background-color: #f9f9f9;
}

.entry-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.entry-form-container .left-column {
    grid-column: 1;
}
.entry-form-container .right-column {
    grid-column: 2;
}

div#footer {
    width: 100%;
    bottom: 0;
    left: 0;
}

footer {
    background-color: #ffffff;
    color: #333;
    padding: 0;
    text-align: center;
    border-top: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin: 10px;
    max-width: 300px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-section a {
    color: #0091b7;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.value-input[type=file] {
    text-wrap: unset;
    padding: 0 .5rem;
}

.entries-list {
    font-size: 12px;
    button {
        cursor: pointer;
    }
}

.test-data {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;

    button {
        background: linear-gradient(135deg, #0091b7, #00c6ff);
        color: #ffffff;
        border: none;
        padding: 0.5rem;
        margin: .25rem;
        border-radius: .5rem;
        font-size: 0.85em;
        cursor: pointer;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 15px;
    }
}