﻿
.builder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.card {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
    .card h3{
        color: 
    }

    .form-group {
        margin-bottom: 15px;
    }

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th,
    .data-table td {
       /* border: 1px solid var(--border);*/
       color: #333;
        padding: 10px;
    }

    /*.data-table tbody tr {
        background: var(--card);
    }

        .data-table tbody tr:hover {
            background: var(--hover);
        }*/

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
}

.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tab {
    background: transparent;
    border: 1px solid #3a3a3a;
}

    .tab.active {
        background: #2563eb;
        color: white;
    }

.action-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: white;
    width: 65%;
    max-width: 800px;
    margin: 8% auto; /* vertical + horizontal center */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: popIn 0.2s ease-in-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal textarea {
    width: 100%;
    height: 200px;
    margin-top: 10px;
    font-family: monospace;
}

.modal-actions {
    text-align: right;
    margin-top: 10px;
}

.close {
    cursor: pointer;
    font-size: 20px;
}
.response-card {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
}

    .response-card.show {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#responseOutput {
    width: 100%;
    resize: vertical;
    font-family: monospace;
}
@media(max-width: 1100px) {

    .builder-grid {
        grid-template-columns: 1fr;
    }
}
