* {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

html, body {
    height: 100%;
  }

body {
    color: #4C4C4C;
    font-family: "Roboto","HelveticaNeue", "Helvetica", "Arial", sans-serif;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
}

#background {
    position: fixed; 
    top:0; 
    left:0; 
    z-index: -10; 
    background: #F6F6F6; 
    width: 100%; 
    height: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 5px 0px 2px 10px;
    background-color: #FFF;
    box-shadow: 0px 2px 5px #dddddd;
}

.content {
    padding-top: 20px;
    padding-bottom: 40px;
    flex: 1 0 auto;
}

footer img {
    height: 40px;
    margin-left: 10px;
    float: right;
    margin: 0px 20px;
}

footer {
    /* margin-top: 50px; */
    padding-top: 10px;
    border-top: 2px solid #DDDDDD;
    background: #FFF;
    height: 50px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

#loading {
    color: #DDDDDD;
}

main {
    margin: auto;
    padding: 40px 20px;
    margin-top: 40px;
    width: 70%;
    min-width: 800px;
    text-align: center;
    background: #FFF;
    overflow: hidden;

    border-radius: 30px 30px;
    box-shadow: 0px 0px 20px 8px #ddd;
}

#main-text {
    display: none
}

p {
    margin: 12px;
}

.success {
    color: #00AE9E;
    margin: 6px;
}

.error {
    color: #C52626;
}

.txt-product-available {
    color: #00AE9E;
}

.fail {
    color: #f54141e3;
}

.txt-available-message {
    text-align: left;
}

.reminder-list {
    text-align: left;
    padding-left: 30px;
}

/* Font awesmoe modifiers */
.enlarge {
    font-size: 2em;
    vertical-align: middle;
}

.hidden {
    display: none;
}

.sink-more {
    margin-top:25px;
}

/* Buttons */
button {
    border-radius: 100px;
    padding: 15px 32px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    outline: 0;

    background-color: #177067;
    color: #fff;
}


button:hover {
    background-color: #00B8AA;
}

button.btn-prev {
    background-color: #F3F3F3;
    color: #8d8d8d;
}

button.btn-prev:hover {
    background-color: #dbdbdb;
    color: #8d8d8d;
}

.right {
    float: right;
}

.left {
    float: left;
}

/* Modal */


/* Progress */

.title {
    margin: 25px;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #2f8ba7;
    font-family: "Roboto","Lato", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
}

/* Message-box */
.message-container {
    display: flex;
    justify-content: center;
}

.messages {
    display: flex;
    flex-direction: column;
    width: 700px
}

.message {
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ddd;
}

.message-title{
    padding: 10px;
    color: #36e0cf;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
}

.message-content {
    padding: 10px;
    padding-left: 32px;
    text-align: left;
}

hr {
    border-top: 2px solid #00AE9E;
    margin-top: 10px;
}

.overlay{
    position: fixed; 
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
}


#loading-container > img {
    width: 100px;
}

#loading-modal {
    display: block;
}

.modal {
    width: 400px;
    position: fixed;
    top: 20%; 
    left: 50%;
    margin-left: -200px;

    border-radius: 40px;
    text-align: center;
    z-index: 11; 
}

.modal .logo {
    max-width: 200px;
}

.modal .modal-message {
    margin-top: 20px;
    font-size: 18px;
    color: #b9b9b9;
}

#summary-raw-data {
    border: 1px solid #ccc;
    color: #777;
    margin-bottom: 25px;
    margin-top: 10px;
}

#summary-container {
    margin-top: 20px;
}

.provisioned-link {
    color: #00AE9E;
    text-decoration: none;
}



/* C1 – Custom Setup – Knowledge Provider styling */
#custom-setup-page .knowledge-provider-group {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers label + select */
}

/* Label styling */
#custom-setup-page .knowledge-provider-group label {
  display: block;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

/* Select wrapper for centering + arrow */
#custom-setup-page .select-wrapper {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
}

/* Modern select styling */
#custom-setup-page .modern-select {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 8px;
  border: 1px solid #d0d4d9;
  background-color: #ffffff;
  color: #1f2937;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Custom dropdown arrow */
#custom-setup-page .select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #6b7280;
}

/* Hover state */
#custom-setup-page .modern-select:hover {
  border-color: #aab0b6;
}

/* Focus state – Genesys-friendly blue */
#custom-setup-page .modern-select:focus {
  outline: none;
  border-color: #1b74e4;
  box-shadow: 0 0 0 3px rgba(27, 116, 228, 0.15);
}
/* Hide helper field by default */
#custom-setup-page .hidden {
  display: none;
}

/* Base URL field styling */
#custom-setup-page .provider-base-url {
  width: min(420px, 100%);
  margin-top: 18px;
  text-align: left;
}

#custom-setup-page .provider-base-url label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

#custom-setup-page .modern-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #d0d4d9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#custom-setup-page .modern-input:focus {
  outline: none;
  border-color: #1b74e4;
  box-shadow: 0 0 0 3px rgba(27, 116, 228, 0.15);
}

#custom-setup-page .input-help-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  display: block;
}