body {
    background-image: url('../image/Sinan_Welle_neu.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-bottom: 40px;
}

.form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.required-field::after {
    content: "*";
    color: red;
    margin-left: 2px;
}

.char-counter {
    font-size: 0.8rem;
    color: #0127178;
    text-align: right;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 4px;
}

.remove-file {
    margin-left: 10px;
    cursor: pointer;
    color: #dc3545;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0127178;
    color: white;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    line-height: 1;
}

/* Tooltip styling */
.tooltip-inner {
    max-width: 220px;
    padding: 10px;
    background-color: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #dee2e6;
}

/* For the image inside tooltip */
.tooltip-inner img {
    display: block;
    max-width: 100%;
    height: auto;
}