/* Agent Header */
.agent-header {
    /* position: fixed; */
    z-index: 1;
    padding: 0px;
    color: var(--black);
    background: var(--white);
    overflow: hidden;
    width: 100%;
    top: 0px;
}

.agent-header .agent-header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

/* Agent Footer */
.agent-footer {
    /* position: fixed; */
    z-index: 1;
    padding: 0px;
    color: var(--black);
    background: var(--white);
    overflow: hidden;
    width: 100%;
    bottom: 0px;
}

#run-view-body h4 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

#run-view-body ul {
    margin-bottom: 0px;
}

#run-view-body li {
    margin-bottom: 0px;
    margin-left: 1.5rem;
    list-style-type: disc;
}

#run-view-body ol {
    margin-bottom: 0px;
}

#run-view-body p {
    margin-bottom: 0px;
}

.dropzone {
    background: #FFFFFF;
    /* border: 2px dashed #ccc; */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.run-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.run-loading-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}