/* Container Styling */
.vha-workspaces-container {
    color: white; /* Text color */
}

/* Header Styling */
.workspaces-header, .workspace-users-header {
    text-align: center;
    color: #ffffff; /* White text */
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button Styling */
.workspaces-add-workspace .btn,.workspace-add-user .btn {
    background-color: #793aff;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

.workspaces-add-workspace .btn:hover,.workspace-add-user .btn:hover {
    background-color: #5a00b3;
}

/* Table Styling */
.workspaces-table,.workspace-users-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.workspaces-table thead th,.workspace-users-table thead th {
    background-color: #793aff; /* Purple header */
    color: white!important;
    padding: 10px!important;
    text-align: center;
    font-size: 18px;
    color: white;
}

.workspaces-table tbody td,.workspace-users-table tbody td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ffffff;
    font-size: 18px;
    color: white;
}

/* Modal Button */
#addWorkspaceModal .btn-primary {
    background-color: #6a0dad;
    border: none;
}

#addWorkspaceModal .btn-primary:hover {
    background-color: #5a00b3;
}

tr:nth-child(even) {
    background-color: #6200ff05;
}

button.edit-workspace-btn,button.delete-workspace-btn {
    padding: 0;
    font-size: 20px;
    background: #ffffff00;
    border: 0;
}

button.edit-workspace-btn:hover,button.delete-workspace-btn:hover{
    background-color: #ffffff00;
    color: #c8c8c8;
}


/* Accordion item styling */
.accordion-item {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

/* Accordion header styling */
.accordion-header {
    padding: 10px;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: background-color 0.3s;
}
.accordion-header:hover {
    background-color: #e6e6e6;
}

/* Accordion content styling */
.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Expand content on hover */
.accordion-item:hover .accordion-collapse {
    max-height: 300px; /* Adjust based on your content height */
    padding: 10px;
}

/* Accordion body styling */
.accordion-body {
    padding: 0;
    background-color: #ffffff;
}


span#selected-product-campaign,span#selected-product-chatbot,span#selected-product-combo,span#selected-product-call-center {
        font-size: 12px;
}

#submitSelections {
    display: inline-flex; /* Aligns both elements horizontally */
    align-items: center; /* Centers the spinner and text vertically */
    justify-content: center; /* Centers everything horizontally */
    width: auto; /* Makes width adjust to content */
    min-width: 120px; /* Optional: Ensures consistent button width even with spinner */
    padding: 10px 20px; /* Adds some spacing for aesthetics */
}

.button-text {
    display: block;
}

.spinner-border {
    margin-left: 5px; /* Adds spacing between text and spinner */
}

#workspace-search{
    
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}