/* Styles for the main page (Billy) */

/* Styles for Side menu */

.billy-menu {
    border-radius: 12px;
    background: var(--Secondary-light-purple, #E0E3F2);
    width: 100%;
    padding: 8px 11px 11px 8px;
}

.menu-label-center {
    font-size: 16px;
    align-items: center;
    vertical-align: middle;
    display: inline-flex;
    font-weight: 400;
    margin-left: 10px;
}

.right-billy-buttons {
    margin-left: 90px;
    align-items: right;
    justify-content: right;
}


/* Styles for main section */

.plugin-content {
    background: #FAFAFC;
}

.section-header {
    padding: 20px 0px 20px 0px;
}

#builder-form {
    width: 100%;
    height: 72px;
    margin: auto;
}

#builder-form textarea{
    height: 100% !important;
}

#builder-instructions {
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

#billy-chatbox-input {
    width: calc(100% - 24px);
    margin: 0px 12px 12px 12px;
}

body {
    background: #F5F6FA;
}

iframe {
    width: 100%;
    height: calc(45vh - 40px);
    background: white;
    background-size: 20px 20px; /* Adjust the size of the grid */
    background-image: radial-gradient(circle, #B4B9D1 0.8px, transparent 0.8px);
    border-radius: 12px;
}

/* Conversation and bubbles */
#builder-chatbox {
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: calc(45vh - 171px);
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    margin-bottom: 10px;
}

#preview-section {
    bottom: 30px;
    margin-top: 36px;
}

#preview-section p{
    margin-left: 12px;
    font-weight: 600;
}

.widget-preview {
    width: 100%;
    /*border: 1px solid #CDD2EA;*/
    border-radius: 12px;
}

/* styles for threads */
.thread-btn {
    border-radius: 12px; /* Rounded corners as specified */
    background-color: #CDD2EA; /* Custom background color */
    color: #1B1C25;
    margin: 4px;
}
/* darken thread-btn 10% on gover */
.thread-btn:hover {
    background-color: #B4B9D1;
    color: #1B1C25;
}

label {
    margin-left: 12px;
}

#undo-button {
    width: 40px;
    height: 40px;
    margin-top: -43px;
    /*margin-bottom: 80px;*/
    border-radius: 24px;
    box-shadow: 0px 10px 20px 0px rgba(13, 14, 24, 0.05);
    background: white;
    z-index: 999;
    overflow: visible;
}

.undo-buttonesque {
    cursor: pointer;
    display: block;
    padding: 8px;
}

