/* Pages/Home.razor.css */

.container-fluid.h-100 {
    height: 100%; /* take full height of main */
    overflow: hidden; /* prevent extra scroll */
}

#chatMessages {
    flex: 1 1 auto;
    overflow-y: auto; /* only this section scrolls */
    background: #f8f9fa;
}

.viewConfigContainer {
    /*TOP RIGHT BOTTOM LEFT*/
    background-color: aliceblue;
    padding: 24px 64px 24px 64px;
    border-bottom: 1px solid #ccc;
}

/*GOLD #bc9c21 */
/*BLUE #0B132B */
/*Light Gold  #FAEFC1*/
.card .card-header {
    background: #FAEFC1;
    color: #0B132B;
}

.pill-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: .5rem 0 1rem;
}

.pill {
    border: 1px solid #e0e0e0;
    border-radius: 9999px;
    padding: .35rem .85rem;
    cursor: pointer;
}

    .pill:hover {
        background: #fff8e1;
        border-color: #f6c343;
    }

    .pill.active {
        background: #ffecb5;
        border-color: #e0a800;
    }

.demo-card {
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.suit-badge {
    border-radius: .65rem;
    padding: .25rem .5rem;
    font-weight: 600;
}

pre.code-block {
    background: #0d1117;
    color: #c9d1d9;
    padding: 1rem;
    border-radius: .75rem;
    overflow: auto;
}

.prompt-pill {
    background-color: #FAEFC1; /* Gold fill */
    color: #0B132B !important; /* White text */
    border: none; /* Remove border */
    width: 100%;
    padding: 0.35rem 0.75rem; /* Slightly smaller */
    font-size: 0.85rem; /* Smaller text */
    border-radius: 50rem; /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .prompt-pill:hover {
        background-color: #A8891C; /* Slightly darker gold */
        transform: translateY(-1px);
    }

    .prompt-pill:active {
        background-color: #8C7318; /* Further darker on click */
        transform: translateY(0);
    }


/*MODAL*/
.bm-header {
    /*background: #fff7e0;*/ /* soft gold */
    border-bottom: 2px solid #d4af37; /* classic gold */
    padding-bottom: 5px; /*TRBL*/
    margin-bottom:10px
}

.blazored-modal {
    border-radius: 14px !important;
    border: 2px solid #d4af37 !important;
}



