body {
    font-family: Lato, sans-serif;
    font-size: 15px;
    /*background-image: url("image.jpg");*/
    margin: 0;
    padding: 0;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the background is behind other content */
    opacity: 0.2; /* Adjust the opacity as needed */
}

.background-image {
    width: 100%;
    height: 100%;
    background-image: url('zirkel.png'); /* Replace 'your-image.jpg' with the path to your image */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(5px);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 8px;
    text-align: left;
}


.attachment-form-container {
    padding: 20px;
    border-radius: 2px;
}

.input-row {
    margin-bottom: 20px;
}

.attachment-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.attachment-row .input-field, .attachment-row .selection {
    width: 50%;
    padding: 10px;
    border-radius: 2px;
    border: #e0dfdf 1px solid;
    box-sizing: border-box;
}

.attachments {
    width: 50%;
}

.icon-add-more-attachment {
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit {
    padding: 10px 20px;
    background: #95c11b;
    color: #ffffff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.errorMessage {
    background-color: #FF6600;
    border: #AA4502 1px solid;
    padding: 5px 10px;
    color: #FFFFFF;
    border-radius: 3px;
}

.successMessage {
    background-color: #95c11b;
    border: #91bf93 1px solid;
    padding: 5px 10px;
    color: #3d503d;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9em;
}

.info {
    font-size: .8em;
    color: #FF6600;
    letter-spacing: 2px;
    padding-left: 5px;
}
