﻿.profile-overlay {
    position: fixed;
    top: 0;
    right: 10px;
    background-color: white;    
    padding: 10px;
    z-index: 100000;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

#addModal .field-container {
    margin-bottom: 20px;
}

#addModal .form-control {
    border-color: black;
}

/* Loading Placeholder Styles */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.loading-header {
    height: 24px;
    background: #e0e0e0;
    border-radius: 4px;
    width: 60%;
    animation: shimmer 1.5s infinite linear;
}

.loading-line {
    height: 12px;
    background: #e0e0e0;
    border-radius: 4px;
    width: 100%;
    animation: shimmer 1.5s infinite linear;
}

    .loading-line.short {
        width: 80%;
    }

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

.loading-header, .loading-line {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200px 100%;
}


/* ---------- form titles ---------- */
.form-list-card-header {
    display: flex;
    align-items: center;
    width: 100%;
}

.form-list-card-header .fl-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.form-list-card-header .fl-form-title {
    font-weight: bold;
}

.form-list-card-header .fl-form-tag {
    margin-left: 0.5rem;
}

.form-list-card-header .fl-form-number {
    flex-grow: 1;
    text-align: right;
    white-space: nowrap;
    margin-right: 10px;
    color: gray;
}

.form-list-card-header .fl-creation-time {
    flex-shrink: 0;
    text-align: right;
    margin-left: auto;
}

[data-show-for-interface] {
    display: none;
}

[data-show-for-interface][data-interface-enabled] {
    display: initial;
}