
/*
CSS for Pre-built items
*/

@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');

/* === Reset === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */
/* === Global Layout === */

body {
    background-color: #28282b; /* or your chosen dark hex color 2A2A2A*/
    color: #FFFFFF;           
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#centered_block {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #28282b;
    text-align: left;
}

p {
    text-align: left;
}

/* === Sticky Side Navigation === */
.side-nav {
    position: fixed;
    top: 0;
    left: -250px;
    /*left: 0;*/
    width: 220px;
    min-height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /*background: linear-gradient(90deg, #0e599d, #a8fbf8);*/
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 50px;
  }
  
.side-nav.active {
    left: 0;
}

.side-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.side-logo-img {
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 0px;
    display: block;
    margin: auto;
    border-radius: 50%;
    object-fit: cover;
}

.side-brand {
    color: white;
    font-family: 'Titan One', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
}

.side-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;

}

.side-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    font-family: "Courier New", Courier, monospace;
    transition: all 0.2s ease;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
}

.side-link:hover {
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* === Hamburger (Mobile Only) === */
.burger {
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /*background: linear-gradient(90deg, #0e599d, #a8fbf8);*/
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    z-index: 1000;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.burger:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 500px) {
    .side-nav {
        left: -250px;
    }

    .side-nav.active {
        left: 0;
    }

    .burger {
        display: block;
    }

    .landing-wrapper {
        margin-left: 0;
        padding-top: 3.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 500px) {
    #centered_block {
        margin-left: 0;
    }
}

.landing-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}


/* === Footer === */
.footer-centered {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    /*background: linear-gradient(90deg, #a8fbf8, #0e599d);*/
    padding: 2.5rem 1rem;
    color: white;
    text-align: center;
    font-family: 'Helvetica Neue', sans-serif;
    /*margin-left: 220px;*/
    width: 100%;
}

@media screen and (max-width: 500px) {
    .footer-centered {
        margin-left: 0;
    }
}

.footer-brand {
    font-family: 'Titan One', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #f1f1f1;
    text-align: center;
}

.footer-links-wrap {
    margin: 1.2rem 0 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.75;
}

.footer-copy {
    font-size: 0.8rem;
    color: #e1e1e1;
    margin-top: 0.8rem;
    text-align: center;
}



.footer-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.social-icon {
  width: 100%;
  height: auto;
  display: block;
}

#global_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(30, 30, 30, 0.85); /* dark grey, semi-opaque */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */
/* === FRONT OF HOUSE === */


.login-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001; /* Higher than chatbot */
}

.login-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
} 

.login-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    text-decoration: none;
}

.login-button:active {
    transform: translateY(-1px) scale(1.02);
}

.login-button:focus {
    outline: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 0 0 3px rgba(102, 126, 234, 0.4);
}


/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */
/* === BACK OF HOUSE === */


/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */
/* === Home Page === */


/* === Hero Section === */
#mainTitle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Titan One', sans-serif;
    padding: 10px 0;
    font-weight: bold;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 30px 20px;
    text-align: center;
}

.hero-section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    min-width: 300px;
    min-height: 300px;
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 0px;
    display: block;
    margin: auto;
    border-radius: 50%;
    object-fit: cover;
}

.hero-subtitle {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



#chatbot-homepageDemoBot {
  pointer-events: none;
}

.chat-launcher-homepageDemoBot {
  display: none;
}

/* === Info Tiles === */
.info-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.info-card {
  width: 280px;
  height: 200px;
  perspective: 1000px;
}

.info-card > div {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card-front {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.info-card-back {
  background-color: #ffffff;
  color: #333;
  transform: rotateY(180deg);
  font-size: 12px;
  text-align: center;
}

.info-card:hover .info-card-front {
  transform: rotateY(180deg);
}

.info-card:hover .info-card-back {
  transform: rotateY(360deg);
}




/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */
/* === Login Page === */



#kloe_login_box {
    min-width: 300px;
    max-width: 300px;
    margin-top: 50px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#kloe_login_box h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#kloe_login_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#kloe_login_form input[type="email"],
#kloe_login_form input[type="password"] {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

#kloe_login_form input[type="email"]::placeholder,
#kloe_login_form input[type="password"]::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Submit Button */
#kloe_login_form input[type="submit"] {
    padding: 12px;
    border: none;
    border-radius: 8px;
    /*background-color: #ff6b6b;*/
    background-color: #4caf50;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

#kloe_login_form input[type="submit"]:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.auth-switch {
    text-align: center;
    margin-top: 15px;
}

#login_here_button {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

#login_here_button:hover {
    color: purple;
}

#kdsfdsfjhgsdk {
    color: red;
}

.demo-note {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}


/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */
/* === Sign-up Page === */

#inner_landing_page_centered {
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#kloe_signup_box {
    min-width: 300px;
    max-width: 300px;
    margin-top: 50px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#kloe_signup_box h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#kloe_signup_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#kloe_signup_form input[type="text"],
#kloe_signup_form input[type="email"],
#kloe_signup_form input[type="password"] {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

#kloe_signup_form input::placeholder {
    color: rgba(255,255,255,0.7);
}

#kloe_signup_form input[type="submit"] {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #4caf50;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

#kloe_signup_form input[type="submit"]:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}


/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */
/* === Welcome Page === */


.welcome-main-content {
    padding: 30px; 
    background: #28282b;
}

#welcome-header-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.08) 50%, 
        rgba(255, 152, 0, 0.05) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

#welcome-animated-div {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

#welcome-h1 {
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 20px;
    font-size: 52px;
    font-weight: 900;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

#welcome-featuresRow {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#welcome-featureItem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

#welcome-featureSpan {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

#welcome-featureItem:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#actionsGrid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; 
    margin-bottom: 40px;
}

#chatBotCard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#chatBotCard:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:  0 15px 30px rgba(0,0,0,0.3);
}

#chatBotCardDiv {
    position: absolute;
    top: 5px;
    right: 15px;
    background: rgba(76, 175, 80, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

#chatBotCard-h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

#chatBotCard-p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 25px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#chatBotCard-div2 {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    margin: 0 auto 30px auto;
    border-radius: 2px; 
}


#textBotCard {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#textBotCardDiv {
    position: absolute;
    top: 5px;
    right: 15px;
    background: red;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

#textBotCard-h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

#textBotCard-p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 25px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#textBotCard-div2 {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    margin: 0 auto 30px auto;
    border-radius: 2px; 
}



#phoneBotCard {
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#phoneBotCardDiv {
    position: absolute;
    top: 5px;
    right: 15px;
    background: red;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

#phoneBotCard-h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

#phoneBotCard-p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 25px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#phoneBotCard-div2 {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    margin: 0 auto 30px auto;
    border-radius: 2px; 
}


#quickTutorialCard {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

#quickTutorialCard:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:  0 15px 30px rgba(0,0,0,0.3);
}

#quickTutorialCard-h2 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

#quickTutorialCard-p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 25px 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

#quickTutorialCard-div2 {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    margin: 0 auto 30px auto;
    border-radius: 2px; 
}



/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/
/* ----MyChatBots Page--------*/

.mychatbots-header-button-1 {

    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    min-width: 140px;
    flex-grow: 1;
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mychatbots-header-button-1:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mychatbots-header-button-2 {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mychatbots-header-button-2:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}


.mychatbots-sorting-container {
    margin-bottom: 30px; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 10px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px;
}

.mychatbots-filters-div {
    display: flex; 
    gap: 1rem; 
    align-items: center;
    flex-wrap: wrap;
}




#chatbots-container{
    margin-bottom: 30px; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 10px; 
    display: block;
    justify-content: center; 
    align-items: center;
    text-align: center;
    flex-wrap: wrap; 
    gap: 15px;
    min-width: 300px;
}

.chatbots-container-text {
    text-align: center;
    color: black;
}


#chatbots-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.chatbot-card {
    background: rgba(60, 60, 65, 0.9);
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.chatbot-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.chatbot-card-status-badge{
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.active-badge {
    background: #4CAF50;
}

.inactive-badge {
    background: #f44336;
}

.chatbot-card-header{
    margin-bottom: 20px; 
    padding-right: 80px;
}

.chatbot-card-name{
    margin: 0 0 8px 0;
    color: #333;
    font-size: 20px;
    font-weight: 700; 
    line-height: 1.2;
}

.chatbot-card-date{
    margin: 0;
    color: #666;
    font-size: 13px;
}

.chatbot-card-components{
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.chatbot-card-components-list{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.chatbot-card-component-name{
    color:#667eea;
    font-weight: 600; 
    min-width: 80px;
}

.chatbot-card-component-details{
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.chatbot-card-usage-stats{
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.chatbot-card-usage-stats-header{
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.chatbot-card-stats-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.chatbot-card-large-button{
    background:white;
    color: black;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.chatbot-card-large-button:hover {
    transform: translateY(-4px)
}

.chatbot-card-analytics-button {
    background: white;
    color: black;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    opacity: 0.8;
}

.chatbot-card-analytics-button:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.chatbot-card-delete-button {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.chatbot-card-delete-button:hover {
    opacity: 1;
    transform: translateY(-1px);
}


/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/



.style-manager-header{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.style-manager-content-area{
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}


.style-customizer-control-box{
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.style-customizer-control-box:hover{
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.style-customizer-control-box-header{
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.style-customizer-control-box-description{
    margin-bottom: 12px;
    font-size: large;
    opacity: 0.8;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.style-customizer-control-box-input-container{
    display: flex;
    align-items: center;
    gap: 12px;
}

.style-customizer-control-box-color-input{
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.style-customizer-control-box-text-input{
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    flex-grow: 1;
    width: 100%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-size: 14px;
}



/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */
/* === Chat Bot Demo === */


/*
kloe_login_box
kloe_signup_box
*/

#homepage-bot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin-top: -60px;
    margin-bottom: -100px;
    padding: 0;
    position: relative;
    z-index: 10;
    left: 15px;*/
}


#chatbot-homepageDemoBot {
  pointer-events: none;
}

.chat-launcher-homepageDemoBot {
  display: none !important;
}

.bot-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 340px;
    max-width: 340px;
}

.bot-toggle-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    gap: 1rem;
    margin-bottom: 50px;
}

.bot-toggle-button {
    padding: 10px 18px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #764ba2;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}
.bot-toggle-button:hover {
    background-color: #5a3885;
}


/* === Info Tiles === */
.info-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.info-card {
  width: 280px;
  height: 200px;
  perspective: 1000px;
}

.info-card > div {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-card-front {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.info-card-back {
  /*background-color: #ffffff;
  color: #333;*/
  background-color: #353538;
  color: #FFFFFF; 
  transform: rotateY(180deg);
  font-size: 16px;
  text-align: center;
}

.info-card:hover .info-card-front {
  transform: rotateY(180deg);
}

.info-card:hover .info-card-back {
  transform: rotateY(360deg);
}

.home-cta-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;

    background: linear-gradient(90deg, #FF3CAC, #784BA0);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    /*border-left: 5px solid #1F5E88;  #45a049 */
    color: white;
}

.home-cta-container:hover {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: #764ba2;
    border-radius: 10px;
    text-align: center;
    color: white;
}


.textbubble {
    max-width: 70%;
    margin: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.4;
    width: fit-content;
}
.textbubble.user {
    background-color: #e1ffc7;
    align-self: flex-end;
    margin-left: auto;
}
.textbubble.bot {
    background-color: #f1f1f1;
    align-self: flex-start;
    margin-right: auto;
}

.phone-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.phone-subtitles {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phone-line {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f1f3f4;
}
.phone-line.user {
    background: #d4edda;
}
.phone-line.bot {
    background: #e8e8f0;
}


.iphone-frame {
    width: 320px;
    height: 580px;
    border-radius: 40px;
    border: 1px solid #999;
    background: #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.iphone-header {
    height: 44px;
    background: #e5e5ea;
    text-align: center;
    font-weight: 600;
    line-height: 44px;
    font-size: 15px;
    border-bottom: 1px solid #ccc;
}

.iphone-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #ffffff;

}

.imessage {
    max-width: 75%;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 18px;
    word-wrap: break-word;
    width: fit-content;
}

.imessage.user {
    align-self: flex-end;
    background-color: #007aff;
    color: white;
    border-bottom-right-radius: 4px;
}

.imessage.bot {
    align-self: flex-start;
    background-color: #e5e5ea;
    color: black;
    border-bottom-left-radius: 4px;
}

/* === Services Page === */
.summary-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    padding-top: 4rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.summary-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
  
}

.summary-section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.summary-item {
  margin-bottom: 1.5rem;
}

.summary-item h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.summary-item p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-left: 1rem;
  line-height: 1.5;
  text-align: center;
}

.summary-section ul {
  list-style-type: disc;
  padding-left: 2rem;
  color: var(--text-dim);
}

.summary-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

/* Match your variables (defined in Summit or main.css) */
:root {
  --text-light: #e0e0e0;
  --text-dim: #bbbbbb;
  --accent: #00c3ff;
  --border: #333;
  --bg-dark: #111;
}



.trademark-wrapper {
  margin-bottom: 3rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.trademark-list-wrapper {
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.trademark-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
}

.trademark-list li {
  margin-bottom: 0.6rem;
}

#contact-p {
    font-size: 20px;
}


/* Personalities Manager *//* Personalities Manager */
/* Personalities Manager */
/* Personalities Manager *//* Personalities Manager */
/* Personalities Manager */
/* Personalities Manager *//* Personalities Manager */
/* Personalities Manager */
/* Personalities Manager *//* Personalities Manager */
/* Personalities Manager */



.cta-button:hover {
    background: #FCA5F1;
    color: white;
}

.manager-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    width: 95%;
    min-width: 300px;
    max-width: 480px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.manager-heading {
    margin-bottom: 10px; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.manager-content-area {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.manager-sidebar {

    background: rgba(60, 60, 65, 0.9);
    flex: 1 1 30%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.manager-content-panel {
    flex: 2 1 60%;
    min-width: 300px;
    /*background: rgb(0, 0, 0);*/
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 20px 20px, cover;

    border-radius: 15px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-height: 600px;
}

.manager-content-panel-dark {
    flex: 2 1 60%;
    min-width: 300px;
    width: 100%;
    background: rgba(60, 60, 65, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px; 
    border-radius: 15px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow-x: hidden;
}



.manager-content-panel-auto-height {
    flex: 2 1 60%;
    min-width: 300px;
    /*background: rgb(0, 0, 0);*/
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 20px 20px, cover;

    border-radius: 15px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}


.manager-nav-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.manager-nav-item:hover {
    background: #007bff; 
    color: white;
}

.manager-nav-item.active {
    background: #007bff; 
    color: white;
}

#create-personality {
    background-color: #9C27B0;
    color: white;
}
#create-kb {
    background: #FF9800;
    color: white;
}
#create-style-button {
    background: #45a049;
    color: white;
}
#create-personality:hover {
    background: linear-gradient(90deg, #9A34FF, #FF8C42);
}
#create-kb:hover {
    background: linear-gradient(90deg, #9A34FF, #FF8C42);
}

#create-style-button:hover {
    background: linear-gradient(90deg, #9A34FF, #FF8C42);

}


#placeholder-div {
    min-width: 100%;
    text-align: center; 
    padding: 40px; 
    color: #666; 
    background: #f9f9f9; 
    border-radius: 8px;
}

#placeholder-div-h3 {
    margin-bottom: 30px;
}


.load-personality-container {
    padding: 30px 30px 20px 30px;
}

.load-personality-container-heading {
    margin-bottom: 10px; 
    color: white;
    font-weight: 600;
}

/* Personality form */
.buildPersonalityCreationForm-main {
    width: 100%;
}
#no_styles_created {
    width: 100%;
    text-align: center;
}

#create-your-first-style-button {
    /*margin-top: 15px;*/
    background: #007BFF; 
    color: white;
    border: none; 
    padding: 10px 20px; 
    border-radius: 6px; 
    cursor: pointer;
}

#create-your-first-style-button:hover {
    transform: translateY(-1px);

}

.form-fieldstyle{
    width: 90%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.1);
    color: white;
    height: auto;
    line-height: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-personality-container{
    width: 100%;
    margin-bottom: 30px;
}

.form-personality-name{
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: white;
}

.form-personality-name-input-textarea {
    min-height: 200px;
}

.form-personality-custom-bot{
    width: 90%; 
    padding: 12px 16px; 
    border: 2px solid #e9ecef;
    border-radius: 8px; 
    font-size: 16px;
    /*background-color: #1a1a1a;*/
    height:105px;
    margin-bottom: 20px;
    /*color: wheat;*/
}

.buildPersonalityCreationForm-action-buttons-container{
    text-align: center; 
    padding-top: 20px; 
    border-top: 1px solid #e9ecef;
}

.buildPersonalityCreationForm-action-save-button-container{
    background: #9C27B0; 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    margin-right: 15px; 
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.buildPersonalityCreationForm-action-reset-button-container{
    background: #6c757d; 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 8px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease;
}


/* loadMyPersonalitiesContent page  */

.loadMyPersonalitiesContent-container-heading{
    padding: 30px;
}

.loadMyPersonalitiesContent-container-heading-title{
    margin-bottom: 20px; 
    color: #666;
}

.loadMyPersonalitiesContent-list{
    padding: 0px 30px 30px 30px;
    color: gray;
}

.warning-personalities{
    text-align: center; 
    padding: 40px; 
    color: #666; 
    background: #f9f9f9; 
    border-radius: 8px;
}

.loadUserPersonalities-loader{
    text-align: center; 
    padding: 40px; 
    color: #666;
}

.loadUserPersonalities-grid{
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px;
}



/* TUTORIALS-page *//* TUTORIALS-page */
/* TUTORIALS-page *//* TUTORIALS-page */
/* TUTORIALS-page *//* TUTORIALS-page */
/* TUTORIALS-page *//* TUTORIALS-page */

.tutorial-container{
    padding: 30px; 
    background: #28282b
}

.tutorial-container-headersection{
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.tutorial-container-headersection-title{
    margin-bottom: 15px; 
    font-size: 42px; 
    font-weight: 800;
}


.tutorial-container-headersection-subtitle{
    font-size: 18px; 
    margin: 0;
    opacity: 0.9;
}


.tutorial-grid{
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 25px;
}

.tutorial-grid-status{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatBot-tutorial-grid-status-text{
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(76, 175, 80, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.chatBot-tutorialgrid-emoji{
    font-size: 64px; 
    margin-bottom: 20px;
}

.chatBot-tutorialgrid-text{
    margin-bottom: 15px; 
    font-size: 28px;
}

.chatBot-tutorialgrid-subtext{
    margin-bottom: 20px; 
    line-height: 1.5;
    opacity: 0.9;
}   

.chatBot-tutorialgrid-subtext-steps{
    font-size: 14px; 
    opacity: 0.8;
}

.textbot-tutorial-grid{
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: not-allowed;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.textbot-tutorial-grid-status-text{
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 152, 0, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.textbot-tutorial-grid-subtext{
    margin-bottom: 20px; 
    line-height: 1.5; 
    opacity: 0.9;
}

.textbot-tutorial-grid-text{
    margin-bottom: 15px; 
    font-size: 28px;
}

.textbot-tutorial-grid-emoji{
    font-size: 64px; 
    margin-bottom: 20px;
}

.textbot-tutorial-grid-subtext-steps{
    font-size: 14px; 
    opacity: 0.8;
}

.phonebot-tutorial-grid{
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
    padding: 35px;
    border-radius: 15px;
    color: white;
    text-align: center;
    cursor: not-allowed;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.phonebot-tutorial-grid-status{
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(156, 39, 176, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.phonebot-tutorial-grid-emoji{
    font-size: 64px; 
    margin-bottom: 20px;
}

.phonebot-tutorial-grid-heading{
    margin-bottom: 15px; 
    font-size: 28px;
}

.phonebot-tutorial-grid-status-subheading{
    margin-bottom: 20px; 
    line-height: 1.5; 
    opacity: 0.9;
}

.phonebot-tutorial-grid-steps{
    font-size: 14px; 
    opacity: 0.8;
}

/* CHATBOT TUTORIAL *//* CHATBOT TUTORIAL */
/* CHATBOT TUTORIAL *//* CHATBOT TUTORIAL */
/* CHATBOT TUTORIAL *//* CHATBOT TUTORIAL */
/* CHATBOT TUTORIAL *//* CHATBOT TUTORIAL */

.chatbot-tutorial__main-content{
    padding: 30px; 
    background: #28282b;
}

.chatbot-tutorial__header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.chatbot-tutorial__header-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    transform: rotate(15deg);
    animation: float 20s ease-in-out infinite;
}

.chatbot-tutorial__header-content {
    position: relative;
    z-index: 2;
}

.chatbot-tutorial__title {
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
}

.chatbot-tutorial__subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.chatbot-tutorial__back-btn {
    position: absolute;
    top: -30px;
    left: 5px;
    padding: 6px 12px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.chatbot-tutorial__back-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}




.chatbot-tutorial__back-btn.hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-tutorial__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.chatbot-tutorial__video-section {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chatbot-tutorial__video-header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-tutorial__video-title {
    color: white;
    margin: 0;
    font-size: 24px;
}

.chatbot-tutorial__video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.chatbot-tutorial__youtube-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.chatbot-tutorial__instructions {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    height: fit-content;
}

.chatbot-tutorial__section-title {
    color: white;
    margin-bottom: 25px;
    font-size: 24px;
}

.chatbot-tutorial__step-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chatbot-tutorial__step-card.hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.chatbot-tutorial__step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.chatbot-tutorial__step-icon {
    font-size: 32px;
}
/* 
.chatbot-tutorial__step-info {
    
} */

.chatbot-tutorial__step-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.chatbot-tutorial__step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

.chatbot-tutorial__step-action {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.chatbot-tutorial__recommend-btn {
    width: 100%;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.chatbot-tutorial__recommend-btn.hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    letter-spacing: 0.6px;
}



/* Knowledge Base Managenment */
/* Knowledge Base Managenment */
/* Knowledge Base Managenment */
/* Knowledge Base Managenment */
/* Knowledge Base Managenment */



.bus_ent_clients {
    padding-top: 20px;
}


/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */
/* === Contact Page === */



/* === Contact CTA & Modal === */
.cta-container {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(90deg, #FF3CAC, #784BA0);
    /*background: linear-gradient(90deg, #9A34FF, #FF8C42);*/
    color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-align: center;
}

.cta-button {
    background: #FFFFFF;
    color: purple;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: #FCA5F1;
    color: white;
}

/* === Modal === */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.modal.active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

/*background: linear-gradient(135deg, #667eea, #764ba2);*/

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 95%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    border-top: 5px solid #764ba2;
}

.modal-content h2 {
    color: purple;
    padding: 25px;
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #FF8C42;
}

#contactForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

input, textarea {
  width: 100%;
  max-width: 90%;
  padding: 12px;
  border: 2px solid #FCA5F1;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s;
  background: #F8F9FA;
  color: #333;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #764ba2;
    box-shadow: 0 0 6px rgba(31, 94, 136, 0.5);
}

.submit-button {
    background: #9A34FF;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    max-width: 90%;
}

.submit-button:hover {
    background: linear-gradient(90deg, #9A34FF, #FF8C42);
}


/* KB form creation */
/* KB form creation */
/* KB form creation */
/* KB form creation */
/* KB form creation */
/* KB form creation */
/* KB form creation */
/* KB form creation */


.kb-form-header {
    padding: 30px 30px 0 30px;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
}


.kb-form-container {
    padding: 0 30px 30px 30px;
}

.kb-form {
    max-width: 800px;
    margin: 0 auto;
}

.kb-form-group {
    margin-bottom: 25px;
}

.kb-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.kb-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
}

.kb-textarea {
    width: 100%;
    height: 80px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    resize: vertical;
}

.kb-upload-heading {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #ffffff;
}

.kb-upload-note {
    margin-bottom: 15px;
    color: yellow;
    font-size: 14px;
}

.kb-upload-area {
    border: 2px dashed #ccc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.kb-upload-area:hover {
    background-color: #f0f0f0;
}

.kb-upload-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.kb-upload-main-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.kb-upload-subtext {
    font-size: 14px;
    color: #666;
}

.kb-form-actions-group {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.kb-action-btn {
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    margin-right: 15px;
    margin-bottom: 15px;
}



.kb-submit-btn {
    background: #FF9800;
}

.kb-submit-btn:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

.kb-reset-btn {
    background: #6c757d;
}

.kb-reset-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.kb-action-btn:last-child {
    margin-right: 0;
}

#kb-file-list .kb-file-info {
    display: flex;
    background-color: #1F5E88;
    align-items: center;
    gap: 12px;
    flex: 1;
    border-radius: 30px;
}

#kb-file-list .kb-file-info-icon {
    margin-left: 30px;
    font-size: 20px;
}

#kb-file-list .kb-file-info-details {
    display: flex;
    flex-direction: column;
}

#kb-file-list .kb-file-info-details .kb-file-name {
    font-weight: 600;
    color: #ffffff;
}

#kb-file-list .kb-file-info-details .kb-file-meta {
    font-size: 12px;
    color: white;
}

.kb-file-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.kb-file-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.kb-file-entry.removed {
    opacity: 0.6;
    text-decoration: line-through;
    background: #f1f1f1;
    border: 1px dashed #ccc;
}


#kb-file-list .kb-file-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #343131c9;
}

#kb-file-list .kb-file-entry:last-child {
    margin-bottom: 0;
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.kb-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kb-file-info-icon {
    font-size: 20px;
}

.kb-file-info-details {
    display: flex;
    flex-direction: column;
}

.kb-file-name {
    font-weight: 600;
    color: #333;
}

.kb-file-meta {
    font-size: 13px;
    color: #666;
}

.kb-file-remove-button {
    background: none;
    margin-left: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    color: wheat;
}

.kb-file-remove-button:hover {
    margin-left: 10px;
    background-color: red;
}


/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/
/*-------------------Style Manager Page-------------------------*/


.style-nav-item{
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.style-nav-item.active{
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #667eea;
    color: white;
}

.style-nav-item:not(.active):hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}



.customizer-container {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;

    padding: 30px;
    /*border-radius: 20px;*/
    margin: 0;
    color: white;
    
    position: relative;
    overflow: hidden;

}


.customizer-item {
    flex: 1 1 300px;    /* min width, allows wrapping */
    min-width: 200px;
    max-width: 200px;   /* optional: avoids items becoming too wide */
}

#mode-indicator {
    background: rgba(76, 175, 80, 0.3); 
    border: 2px solid #4CAF50; 
    padding: 12px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    font-weight: 600;
    width: 100%;
}

.style-customizer-control-box{
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.style-customizer-control-box:hover{
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.style-customizer-control-box-header{
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.style-customizer-control-box-input-container{
    display: flex;
    align-items: center;
    gap: 12px;
}

.style-customizer-control-box-color-input{
    width: 50px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.style-customizer-control-box-text-input{
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    flex-grow: 1;
    width: 100%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: "Courier New", monospace;
    font-weight: bold;
    font-size: 14px;
}

#text-content-customization {
    background: rgba(255,255,255,0.15); 
    padding: 20px; 
    border-radius: 15px; 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255,255,255,0.2); 
    transition: all 0.3s ease;
    width: 100%;
    /*grid-column: span 2;*/
}

#text-content-customization:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

#logo-upload-section {
    width: 100%;
    background: rgba(255,255,255,0.15);
    padding: 20px; 
    border-radius: 15px; 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255,255,255,0.2); 
    transition: all 0.3s ease;
}

#customBotLogoInput {
    display: block; 
    width: 100%; 
    padding: 10px 15px; 
    border: 1px solid rgba(255,255,255,0.3); 
    border-radius: 8px; 
    background: rgba(255,255,255,0.1); 
    color: white; 
    font-family: "Courier New", monospace; 
    font-size: 14px; 
    cursor: pointer;
}


/* CARDS ON ALL PAGES */

/* ========== BASE CARD STYLING ========== */
.style-card-base,
.personality-management-card,
.kb-management-card {
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 20px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

/* ========== HEADER SECTIONS ========== */
.style-card-header,
.createPersonalityManagementCard-header,
.kb-card-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.style-card-title,
.createPersonalityManagementCard-name,
.kb-card-title {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* ========== DATE TEXT ========== */
.style-card-date,
.style-card-updated,
.createPersonalityManagementCard-date,
.kb-card-date {
    margin: 0;
    color: #666;
    font-size: 13px;
    text-align: center;
}

/* ========== COLOR PALETTE PREVIEW ========== */
.style-card-preview {
    margin-bottom: 15px;
}

.style-color-palette-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.style-color-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    justify-content: center;
}

.style-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.style-color-box {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #ddd;
    margin-bottom: 4px;
}

.style-color-label {
    font-size: 10px;
    color: #666;
    text-align: center;
}

/* ========== TAG/TYPE BADGES ========== */
.createPersonalityManagementCard-tonediv-type,
.createPersonalityManagementCard-behavior-type,
.kb-file-type-badge {
    font-size: 13px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.createPersonalityManagementCard-tonediv-type,
.createPersonalityManagementCard-behavior-type {
    background: #f3e5f5;
    color: #6a1b9a;
}

.kb-file-type-badge {
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
}

/* ========== INSTRUCTIONS/DESCRIPTIONS ========== */
.createPersonalityManagementCard-custom-instructions,
.kb-description-container {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f4f2f7;
    border-left: 4px solid #9C27B0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.kb-description-container {
    border-left: 3px solid #FF9800;
}

.createPersonalityManagementCard-custom-instructions-text,
.kb-description-label {
    font-weight: 700;
    margin-bottom: 5px;
    color: #4a148c;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.kb-description-label {
    color: #333;
}

.createPersonalityManagementCard-custom-instructions-input,
.kb-description-text {
    color: #444;
    font-size: 13px;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* ========== FILE/DETAIL SECTIONS ========== */
.createPersonalityManagementCard-details,
.kb-details-section {
    margin-bottom: 15px;
}

.kb-file-count {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.kb-file-types {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

/* ========== TEXT GROUPS ========== */
.createPersonalityManagementCard-tonediv-text,
.createPersonalityManagementCard-behavior-text {
    font-weight: 600;
    color: #333;
}

.createPersonalityManagementCard-tonediv,
.createPersonalityManagementCard-behavior {
    margin-bottom: 8px;
}

/* ========== ACTION BUTTONS ========== */
.style-card-actions,
.createPersonalityManagementCard-buttons-container,
.kb-actions-div {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.style-edit-button,
.style-delete-button,
.createPersonalityManagementCard-button-edit-personality,
.createPersonalityManagementCard-button-delete-personality,
.kb-action-button {
    flex: 1 1 45%;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

/* === Button Color Schemes === */
.style-edit-button,
.kb-edit-button,
.createPersonalityManagementCard-button-edit-personality {
    background: #FF9800;
}
.style-edit-button:hover,
.kb-edit-button-hover,
.createPersonalityManagementCard-button-edit-personality:hover {
    background: #F57C00 !important;
    transform: translateY(-1px);
}

.style-delete-button,
.kb-delete-button,
.createPersonalityManagementCard-button-delete-personality {
    background: #f44336;
}
.style-delete-button:hover,
.kb-delete-button-hover,
.createPersonalityManagementCard-button-delete-personality:hover {
    background: #d32f2f !important;
    transform: translateY(-1px);
}

/* ========== HOVER EFFECTS FOR CARDS ========== */
.style-card-hover,
.kb-card-hover {
    border-color: #667eea !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}
.kb-card-hover {
    border-color: #FF9800 !important;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.15);
}






/*Create New ChatBot Page */
/*Create New ChatBot Page */
/*Create New ChatBot Page */
/*Create New ChatBot Page */
/*Create New ChatBot Page */
/*Create New ChatBot Page */


#choosing_type_div {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInDown 0.8s ease-out;
}


/* not in here - 
choose-bot-type
progress-style
*/

#progress-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
#progress-items{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 0;
        }
    }

#bot-name-input{
    padding: 12px 16px; 
    border: 2px solid #e9ecef; 
    border-radius: 8px; 
    margin-right: 15px; 
    font-size: 16px; 
    width: 300px; 
    margin-bottom: 15px;
}

#create-bot-submit{
    background: #6c757d; 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    border-radius: 8px; 
    font-size: 16px; 
    cursor: not-allowed; 
    opacity: 0.6; 
    font-weight: 600;
}

#custom-alert {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    border: 2px solid black;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    text-align: center;
    transition: opacity 0.3s ease;
}

#custom-alert button {
    margin-top: 15px;
    padding: 6px 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#custom-alert.hidden {
    display: none;
}

.create-bot-main-content{
    border-radius: 15px; 

    padding: 30px; 
    min-height: 100vh; 
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.create-bot-main-title-h1{
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInDown 0.8s ease-out;
}

.mychatbots-select {
    padding: 8px 12px; 
    border: 1px solid #ced4da; 
    border-radius: 6px; 
    background: white;
}


.create-bot-progress-bar{
    border-radius: 15px; 
    margin-bottom: 30px;
    background: rgba(60, 60, 65, 0.9);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    padding:20px;
}

 @media screen and (max-width: 600px){
    .create-bot-progress-bar {
                padding: 12px;
                border-radius: 12px;
                margin-bottom: 20px;
            }
 }

.progress-bar-heading{
    border-radius: 15px; 

    margin-bottom: 15px;
    color: #333;
}

.progress-step{
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 25px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

@media screen and (max-width: 600px) {
.progress-step{
            padding: 20px 16px;
            border-radius: 12px;
            font-size: 1rem;
            margin: 0;
        }
    }

.step-badge{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container{
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 600px) {
    .icon-container{
                width: 50px;
                height: 50px;
                margin: 0 auto 10px auto;
            }
        }

.glow-effect{
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar-item-icon{
    font-size: 32px; 
    z-index: 2; 
    position: relative;
}

@media screen and (max-width: 600px) {
    .progress-bar-item-icon{
                font-size: 24px;
            }
        }


.progress-bar-item-title{
    font-weight: 700;
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

@media screen and (max-width: 600px) {
    .progress-bar-item-title{
                font-size: 16px;
                margin-bottom: 6px;
            }
        }

.progress-bar-item-description{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media screen and (max-width: 600px) {
    .progress-bar-item-description{
            font-size: 12px;
            margin-bottom: 10px;
            letter-spacing: 0.4px;
            }
        }

.progress-bar-selection-status{
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: transparent;
    color: #ff6b6b;
    border: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.create-bot-columns-container{
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 20px; 
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .create-bot-columns-container
    {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }
}


.create-bot-component-column{
    background: rgba(60, 60, 65, 0.9);
    padding: 20px; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    margin-top: 16px; 
}

@media screen and (max-width: 768px) {
    .create-bot-component-column{
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 16px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        }
    
    }


.style-section-create-bot{
    text-align: center; margin-bottom: 20px; color: white;
}

.personality-section-create-bot{
    text-align: center; margin-bottom: 20px; color: white;
}

.knowledge-section-create-bot{
    text-align: center; margin-bottom: 20px; color: white;
}

.create-bot-submit-section{
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 20px 20px, cover;
    padding: 30px; 
    border-radius: 15px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    text-align: center;
}

/* loadStyleSelector Page  */
/* loadStyleSelector Page  */
/* loadStyleSelector Page  */
/* loadStyleSelector Page  */

.login-warning{
    text-align: center; 
    color: #666; 
    padding: 20px;
}

.loadStyleSelector-create-new-styles{
    width: 100%; 
    background: #4CAF50; 
    color: white; 
    border: none; 
    padding: 8px; 
    border-radius: 6px; 
    margin-bottom: 12px; 
    cursor: pointer; 
    font-size: 12px;
}

#styles-selector-container{
    display: grid; 
    gap: 10px; 
    max-height: 600px; 
    overflow-y: auto;
}

.style-selector-card{
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 10px;
    margin-top:3px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(60, 60, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.style-selector-card-header{
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 10px;
}


.row-color{
    display: flex; 
    gap: 8px; 
    margin-bottom: 5px; 
    flex-wrap: wrap;
}

.card-width{
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    min-width: 40px;
}

.swatch-color-selected{
    width: 24px; 
    height: 24px;
    border-radius: 20px; 
    border: 1px solid #ddd; 
    margin-bottom: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); 
}

.color-label{
    font-size: 9px; 
    color: white; 
    text-align: center; 
    font-weight: 500; 
    opacity: 0.9;
}

.style-title-section {
    flex: 1;
}

.style-title-heading {
    margin: 0 0 2px 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align:left;
}


.style-created-date {
    font-size: 8px;
    color: white;
    margin-bottom: 4px;
    opacity: 0.8;
    text-align: left;
}

.color-palette-container{
    margin-bottom: 10px;
}

.color-palette-text{
    font-weight: 600; 
    margin-bottom: 6px; 
    color: white; 
    font-size: 10px;
    text-align:left;
}

.action-section{
    display: flex; gap: 8px; 
    align-items: center; 
    margin-top: 10px; 
    padding-top: 10px; 
    border-top: 1px solid #eee;
}

.edit-style-create-bot{
    background: #667eea; 
    color: white; 
    border: none; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.edit-style-create-bot:hover{
    background: #5a67d8;
}

.delete-style-create-bot{
    background: #f56565; 
    color: white; 
    border: none; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
    margin-left: auto;
}

.delete-style-create-bot:hover{
    background: #e53e3e; 
}

.style-selector-card:hover{
    background: rgba(100, 100, 105, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.style-selector-card.selected{
    background: rgba(102, 126, 234, 0.3);
    border: 0.5px solid #667eea;
    color: white;
}

/* Personality cards in create chat Bot page */
/* Personality cards in create chat Bot page */
/* Personality cards in create chat Bot page */
/* Personality cards in create chat Bot page */


.loadpersonalityselector-create-chat-bot{
    width: 100%; 
    background: #4CAF50; 
    color: white; 
    border: none; 
    padding: 8px; 
    border-radius: 6px; 
    margin-bottom: 12px; 
    cursor: pointer; 
    font-size: 12px;
}

.load-personality-create-chat-bot-page{
    text-align: center; 
    padding: 15px; 
    color: white; 
    background: #2d3748; 
    border-radius: 6px;
}

.personality-grid-create-chat-bot{
    display: grid; 
    gap: 10px; 
    max-height: 600px; 
    overflow-y: auto;
}

.personality-selector-card{
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 10px;
    margin-top: 3px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(60, 60, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.personality-selector-card:hover{
    background: rgba(100, 100, 105, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.personality-selector-card.selected{
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
    color: white;
}

.personality-card-create-chat-bot-trails{
    text-align: left;
    margin-bottom: 8px;
}

.personality-card-name-create-chat-bot{
    text-align: left;
    margin: 0 0 6px 0; 
    color: white; 
    font-size: 14px; 
    font-weight: 600;
}

.personality-card-tone-create-bot{
   
    display: inline-block; 
    background: rgba(25, 118, 210, 0.2); 
    color: #64B5F6; padding: 2px 6px; 
    border-radius: 10px; 
    font-size: 9px; 
    margin-right: 4px; 
    margin-bottom: 2px; 
    border: 1px solid rgba(25, 118, 210, 0.3);
                
}

.personality-card-behavior-create-bot{
    display: inline-block; 
    background: rgba(123, 31, 162, 0.2); 
    color: #CE93D8; 
    padding: 2px 6px; 
    border-radius: 10px; 
    font-size: 9px; 
    margin-right: 4px; 
    margin-bottom: 2px; 
    border: 1px solid rgba(123, 31, 162, 0.3);
}

.personality-card-date-create-bot{
    margin: 0 0 8px 0; 
    color: white; 
    font-size: 10px; 
    opacity: 0.8;
}

.personality-card-actions-create-bot{
    margin-top: 8px; 
    display: flex; 
    gap: 8px; 
    padding-top: 8px; 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.personality-card-edit-create-bot{
    background: #9C27B0; 
    color: white; 
    border: none; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer; 
    font-weight: 500; 
    transition: background 0.2s ease;
}

.personality-card-edit-create-bot:hover{
    background:#7B1FA2;
}

.personality-card-delete-create-bot{
    background: #f44336; 
    color: white; 
    border: none; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer; 
    font-weight: 500; 
    margin-left: auto; 
    transition: background 0.2s ease;
}


.personality-card-delete-create-bot:hover{
      background:#d32f2f;
}

.loadpersonilityselector-create-chat-bot{
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
}

/* Load KB cards create chat bot  */
/* load KB cards create chat bot  */
/* Load KB cards create chat bot  */
/* Load KB cards create chat bot  */

.kb-create-button-create-chat-bot{
    width: 100%; 
    background: #4CAF50; 
    color: white; 
    border: none; 
    padding: 8px; 
    border-radius: 6px; 
    margin-bottom: 12px; 
    cursor: pointer; 
    font-size: 12px;
}

.kb-grid-create-chat-bot{
    display: grid; 
    gap: 10px; 
    max-height: 600px; 
    overflow-y: auto;
}

.kb-selector-card{
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 10px;
    margin-top: 3px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(60, 60, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.kb-selector-card.selected{

    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
    color: white;

}

.kb-selector-card:hover{
    background: rgba(100, 100, 105, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.kb-title-create-chat-bot{
    text-align: left;
    margin: 0 0 6px 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.kb-file-create-chat-bot{
    margin-bottom: 8px;
}

.kb-file-count-create-chat-bot{
    text-align: left;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #CE93D8;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid rgba(123, 31, 162, 0.3);
}

.kb-file-card-create-chat-bot{
    margin-top: 8px; 
    display: flex; 
    gap: 8px; 
    padding-top: 8px; 
    border-top: 1px solid rgba(255,255,255,0.1);
}

.kb-file-length-create-chat-bot{
    display: flex; 
    gap: 4px; 
    flex-wrap: wrap; 
    margin-bottom: 6px;
}

.kb-file-type-create-chat-bot{
    display: inline-block; 
    background: rgba(255, 87, 34, 0.2); 
    color: #FF8A65; 
    padding: 2px 6px; 
    border-radius: 10px; 
    font-size: 9px; 
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.kb-file-date-create-chat-bot{
    margin: 0 0 8px 0; 
    color: white; 
    font-size: 10px; 
    opacity: 0.8;
}

.kb-file-edit-create-chat-bot{
    background: #FF5722; 
    color: white; 
    border: none; padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer; 
    font-weight: 500; 
    transition: background 0.2s ease;
}

.kb-file-edit-create-chat-bot:hover{
    background:#E64A19;
}

.kb-file-delete-create-chat-bot{
    background: #f44336; 
    color: white; 
    border: none; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 11px; 
    cursor: pointer; 
    font-weight: 500;
     margin-left: auto; 
     transition: background 0.2s ease;
}

.kb-file-delete-create-chat-bot:hover{
    background:#d32f2f;
}




/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */
/* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot *//* Phone Bot */

/* Phone Bot Main Layout */
.phone-bot-main-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 5px;
    /* background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%); */
    /* border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    min-height: 80vh; */
}

.phone-bot-main-title-h1 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    /* margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); */
    /* background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
}


.phone-step-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 600;
    font-size: 14px;
}

.phone-icon-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.phone-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.phone-progress-bar-item-icon {
    font-size: 24px;
    z-index: 1;
    position: relative;
}

.phone-progress-bar-item-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.phone-progress-bar-item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

.phone-progress-bar-selection-status {
    font-size: 12px;
    font-weight: 500;
    color: #ff6b6b;
    margin-top: 10px;
}

#modern-phone-type-cards .phone-type-card.modern-btn {
    background: linear-gradient(102deg, #f7fafd 60%, #eef2fb 100%);
    border: 2px solid #dde6ff;
    border-radius: 20px;
    padding: 30px 36px 20px 36px;
    margin: 0 18px 20px 0;
    display: inline-block;
    min-width: 210px;
    cursor: pointer;
    box-shadow: 0 3px 14px rgba(30, 80, 180, 0.06);
    transition: box-shadow .22s, transform .18s, border-color .21s;
    outline: none;
    position: relative;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    vertical-align: top;
}
#modern-phone-type-cards .phone-type-card .phone-type-title {
    display: block;
    font-size: 1.23rem;
    font-weight: 700;
    color: #1c2050;
    margin-bottom: 8px;
    letter-spacing: .01em;
}
#modern-phone-type-cards .phone-type-card .phone-type-desc {
    display: block;
    color: #556080;
    font-size: 0.97rem;
    font-weight: 400;
    opacity: .9;
    margin-bottom: 2px;
}
#modern-phone-type-cards .phone-type-card.selected,
#modern-phone-type-cards .phone-type-card:focus-visible {
    border-color: #5b75e8;
    background: linear-gradient(98deg, #e8f0ff 70%, #dde9ff 100%);
    box-shadow: 0 16px 42px rgba(54, 87, 255, 0.19), 0 0 0 2px #4569e522;
    transform: translateY(-7px) scale(1.03);
    z-index: 1;
}
#modern-phone-type-cards .phone-type-card:active {
    transform: scale(0.98);
}
#modern-phone-type-cards .phone-type-card:focus-visible {
    outline: 3px solid #617efb;
}



/* Step Container */
.phone-step-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-step-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

.phone-step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Phone Type Cards */
.phone-type-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.phone-type-card {
    flex: 1 1 160px;
    max-width: 220px;
    min-width: 120px;
    background: #fff;
    border: 1.5px solid #e4e9f2;
    border-radius: 14px;
    padding: 16px 10px 18px 10px;
    margin: 0 4px 12px 4px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 16px rgba(102,126,234,0.06);
    position: relative;
    overflow: hidden;
    transition: 
        box-shadow 0.18s,
        border-color 0.18s,
        background 0.18s,
        transform 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-type-card .phone-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 2px;
}

.phone-type-title {
    font-size: 1.11rem;
    font-weight: 700;
    color: #243046;
    margin: 2px 0 7px 0;
    letter-spacing: 0.02em;
}

.phone-type-badge {
    background: #eef3fd;
    color: #667eea;
    border-radius: 8px;
    padding: 2.5px 10px;
    font-size: 0.93em;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.phone-type-card.selected {
    border-color: black;
    background: linear-gradient(120deg, #eef3fd 65%, #fff 100%);
    box-shadow: 0 6px 18px rgba(102,126,234,0.15);
    /* transform: translateY(-3px) scale(1.04); */
}

.phone-type-card:hover:not(.selected) {
    box-shadow: 0 6px 20px rgba(102,126,234,0.15);
    border-color: #bfc8ea;
    background: #fafcff;
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 700px) {
    .phone-type-card {
        max-width: 96vw;
        min-width: 100px;
        font-size: 0.98em;
        padding: 12px 4vw 14px 4vw;
    }
}

.number-type-selected{
    align-items: center;
}

.number-type-selected {
    margin-top: 18px;
    /* background: ; */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(102,126,234,0.07);
    padding: 24px 18px 16px 18px;
    min-height: 130px;
    transition: background 0.25s, box-shadow 0.2s;
}


.phone-type-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.phone-type-benefit {
    color: #4CAF50;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.phone-type-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    text-transform: uppercase;
}

.phone-type-badge.standard {
    background: linear-gradient(45deg, #6c757d, #495057);
}

/* Navigation */
.phone-step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-nav-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateX(-3px);
}

.phone-next-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.phone-next-btn:hover:not(.disabled) {
    background: linear-gradient(45deg, #5a6fd8, #6a42a0);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateX(3px);
}

.phone-next-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
}

.phone-validation-message {
    color: #ff6b6b;
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneCardSelect {
    0% { transform: translateY(-5px) scale(1.02); }
    50% { transform: translateY(-8px) scale(1.05); }
    100% { transform: translateY(-5px) scale(1.02); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* Improved accessibility and touch targets */
@media (max-width: 480px) {
    .phone-result-item:hover {
        transform: none; /* Remove transform on mobile for better performance */
        background: rgba(255, 255, 255, 0.12);
    }
    
    .phone-result-item:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.98);
    }
    
    .phone-result-checkbox {
        min-width: 4px; /* iOS touch target minimum */
        min-height: 4px;
        width: 44px;
        height: 44px;
        padding: 12px;
        box-sizing: border-box;
        cursor: pointer;
    }
    
    /* Better visual feedback for selected items */
    .phone-result-item:has(.phone-result-checkbox:checked) {
        background: rgba(102, 126, 234, 0.2);
        border-color: #667eea;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }
}

/* Phone Bot Step 2 - Search Interface Styles */

/* Search Form Styles */
.phone-search-form-container {
    /* background: rgba(255, 255, 255, 0.0); */
    /* border-radius: 20px;                        */
    /* padding: 40px 48px; */
    /* margin: 32px auto;  */
    /* border: 1px solid rgba(255, 255, 255, 0.18);  */
    /* color: white;                               */
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.12);   */
    /* backdrop-filter: blur(10px);               
    -webkit-backdrop-filter: blur(10px); */
    position: relative;                      
    overflow: hidden;
    width:100%;
    max-width: 900px;
    box-sizing: border-box;
}


.phone-search-form-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.phone-search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.phone-search-form-grid.toll-free {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.phone-form-group {
    display: flex;
    flex-direction: column;
}

.phone-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.phone-form-input,
.phone-form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.phone-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.phone-form-input:focus,
.phone-form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.phone-form-select option {
    background: #2d2d44;
    color: #ffffff;
}

/* Search Button */
.phone-search-btn-container {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.phone-search-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 250px;

}

.phone-search-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #5a6fd8, #6a42a0);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.phone-search-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.phone-loading-indicator {
    color: #667eea;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    animation: pulse 1.5s infinite;
}

.phone-loading-indicator.hidden {
    display: none;
}
.phone-search-results-container {
    background: rgba(255, 255, 255, 0.09);    
    border-radius: 20px;                          
    padding: 32px 36px;                        
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18); 
    color: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);    
    /* backdrop-filter: blur(5px); */
    /* -webkit-backdrop-filter: blur(5px); */
    position: relative;
    overflow: hidden;
    min-height: 140px;  
    max-width: 800px;                         
}

.phone-results-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.07);
}

.phone-results-title.error {
    color: #ff6b6b;
}

.phone-results-empty,
.phone-results-error {
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: 1.09rem;
    padding: 24px 8px;
    font-style: italic;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.phone-results-error {
    color: #ff6b6b;
    background: rgba(255,107,107,0.08);
}
.phone-results-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 14px;
    margin-bottom: 2px;
    -webkit-overflow-scrolling: touch;  /* Mobile physics */
    scroll-behavior: smooth;             /* Smooth scroll for JS scrollTo */
}

.phone-results-list::-webkit-scrollbar { width: 6px; }
.phone-results-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}
.phone-results-list::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 3px;
}
.phone-results-list::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

/* Individual Result Item */
.phone-result-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    max-width: 900px;
}

.phone-result-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.phone-result-item:has(.phone-result-checkbox:checked) {
    background: rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.phone-result-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
    cursor: pointer;
    flex-shrink: 0;
}

.phone-result-info {
    flex: 1;
    min-width: 0;
}

.phone-result-number {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.phone-result-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.phone-result-capabilities {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.phone-capability-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-capability-badge.voice {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.3);
}

.phone-capability-badge.sms {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border-color: rgba(33, 150, 243, 0.3);
}

.phone-capability-badge.mms {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
    border-color: rgba(156, 39, 176, 0.3);
}

/* Selected Numbers Section */
.phone-selected-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-selected-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-selected-title::before {
    content: "📱";
    font-size: 20px;
}

.phone-selected-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-selected-empty {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    padding: 20px;
}

.phone-selected-item {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.3s ease-out;
}

.phone-selected-info {
    flex: 1;
}

.phone-selected-number {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.phone-selected-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.phone-selected-remove {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.phone-selected-remove:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.5);
    transform: scale(1.1);
}

/* Step 2 specific navigation updates */
#phone-step2-next-btn:not(.disabled) {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

#phone-step2-next-btn:not(.disabled):hover {
    background: linear-gradient(45deg, #45a049, #3d8b40);
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@media (max-width: 768px) {
    .phone-search-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phone-search-form-grid.toll-free {
        grid-template-columns: 1fr;
    }
    
    .phone-search-form-container {
        padding: 20px;
    }
    
    .phone-search-results-container {
        padding: 20px;
    }
    
    .phone-selected-container {
        padding: 20px;
    }
    
    /* FIXED: Keep horizontal layout */
    .phone-result-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px;
    }
    
    .phone-result-checkbox {
        width: 22px;
        height: 22px;
        transform: scale(1.1);
    }
    
    .phone-result-info {
        flex: 1;
    }
    
    .phone-result-number {
        font-size: 17px;
        white-space: nowrap;
        margin-right: 10px;
    }
    
    .phone-result-location {
        font-size: 15px;
    }
    
    .phone-result-capabilities {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .phone-capability-badge {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 50px;
    }
    
    /* FIXED: Keep horizontal layout for selected items */
    .phone-selected-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
    }
    
    .phone-selected-remove {
        width: 32px;
        height: 32px;
    }
    
    .phone-search-btn {
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .phone-step-title {
        font-size: 1.4rem;
    }
    
    .phone-search-form-title {
        font-size: 1.1rem;
    }
    
    .phone-results-title {
        font-size: 1.1rem;
    }
    
    .phone-selected-title {
        font-size: 1rem;
    }
    
    .phone-form-input,
    .phone-form-select {
        padding: 10px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .phone-search-btn {
        width: 100%;
        min-width: auto;
    }
    
    .phone-results-list {
        max-height: 300px;
    }
    
    
    .phone-search-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phone-search-form-grid.toll-free {
        grid-template-columns: 1fr;
    }
    
    .phone-search-form-container {
        padding: 20px;
    }
    
    .phone-search-results-container {
        padding: 20px;
    }
    
    .phone-selected-container {
        padding: 20px;
    }
    
    
    .phone-result-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px;
    }
    
    .phone-result-checkbox {
        width: 15px;
        height: 15px;
        transform: scale(1.1);
    }
    
    .phone-result-info {
        flex: 1;
    }
    
    .phone-result-number {
        margin-top: 10px;
        font-size: 17px;
        white-space: nowrap;
        margin-right: 10px;
    }
    
    .phone-result-location {
        font-size: 15px;
    }
    
    .phone-result-capabilities {
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .phone-capability-badge {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 50px;
    }
    
    /* FIXED: Keep horizontal layout for selected items */
    .phone-selected-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px;
    }
    
    .phone-selected-remove {
        width: 32px;
        height: 32px;
    }
    
    .phone-search-btn {
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
    }
}


/* Phone Bot Step 3 - Configuration Styles */

/* Summary Section */
.phone-step3-summary-container {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.phone-summary-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.phone-summary-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-summary-info {
    flex: 1;
}

.phone-summary-number {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
}

.phone-summary-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.phone-summary-location.toll-free-indicator {
    color: #4CAF50;
    font-weight: 500;
}

.phone-summary-location.local-indicator {
    color: #2196F3;
    font-weight: 500;
}

.phone-summary-capabilities {
    display: flex;
    gap: 8px;
    align-items: center;
}

.phone-summary-cap {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: help;
}

.phone-summary-error {
    color: #ff6b6b;
    text-align: center;
    padding: 20px;
    font-weight: 500;
}

/* Configuration Sections */
.phone-step3-config-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phone-config-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.phone-config-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.phone-config-section-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-config-section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Bot Name Input */
.phone-bot-name-input {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.phone-bot-name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.phone-bot-name-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Resource Grids (Personalities & Knowledge Bases) */
.phone-resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.phone-resource-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.phone-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.phone-resource-card:hover::before {
    left: 100%;
}

.phone-resource-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.phone-resource-card.selected {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
}

.phone-resource-card.selected .phone-resource-selector::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.phone-resource-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.phone-resource-icon {
    font-size: 24px;
    margin-right: 12px;
    opacity: 0.9;
}

.phone-resource-content {
    flex: 1;
}

.phone-resource-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.phone-resource-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.phone-resource-selector {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

/* Knowledge Base Specific Styles */
.phone-kb-info {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.phone-kb-stat {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Empty States */
.phone-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.phone-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.phone-empty-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-empty-description {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.phone-create-resource-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-create-resource-btn:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a42a0);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Error States */
.phone-error-state {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
}

.phone-error-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-error-description {
    font-size: 14px;
    color: rgba(255, 107, 107, 0.8);
}

/* Step 3 Navigation */
.phone-create-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.phone-create-btn:hover:not(.disabled) {
    background: linear-gradient(45deg, #45a049, #3d8b40);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transform: translateX(3px);
}

.phone-create-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Success Screen */
.phone-success-container {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.phone-success-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out;
}

.phone-success-title {
    color: #4CAF50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.phone-success-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.phone-success-details {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.phone-success-detail {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-success-detail:last-child {
    margin-bottom: 0;
}

.phone-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-success-btn {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.phone-success-btn:hover {
    background: linear-gradient(45deg, #1976D2, #1565C0);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-config-section {
    animation: fadeInUp 0.6s ease-out;
}

.phone-config-section:nth-child(1) { animation-delay: 0.1s; }
.phone-config-section:nth-child(2) { animation-delay: 0.2s; }
.phone-config-section:nth-child(3) { animation-delay: 0.3s; }

/* Responsive Design for Step 3 */
@media (max-width: 768px) {
    .phone-step3-summary-container {
        padding: 15px;
    }
    
    .phone-summary-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .phone-summary-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .phone-summary-capabilities {
        align-self: flex-end;
    }
    
    .phone-config-section {
        padding: 20px;
    }
    
    .phone-resource-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phone-resource-card {
        padding: 15px;
    }
    
    .phone-kb-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .phone-success-actions {
        flex-direction: column;
    }
    
    .phone-nav-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .phone-success-icon {
        font-size: 56px;
    }
    
    .phone-success-title {
        font-size: 1.6rem;
    }
    
    .phone-success-description {
        font-size: 1rem;
    }
    
    .phone-config-section-title {
        font-size: 1.1rem;
    } 
    
    .phone-resource-title {
        font-size: 1rem;
    }
    
    .phone-empty-icon {
        font-size: 36px;
    }
}


/* Phone Bot Step 3 - Direction Selection Styles */
.phone-step3-direction-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.phone-direction-section {
    margin-bottom: 0;
}

.phone-direction-section-title {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-direction-section-description {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.phone-direction-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.2s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.phone-direction-dropdown:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-direction-dropdown:hover {
    border-color: #9ca3af;
}

.phone-direction-dropdown option {
    padding: 12px;
    color: #1f2937;
}

.phone-direction-dropdown option:disabled {
    color: #9ca3af;
}

.phone-direction-details-container {
    margin-top: 24px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-direction-details {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.phone-details-title {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-details-description {
    color: #64748b;
    font-size: 13px;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.inbound-details {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.outbound-details {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #f8fafc 100%);
}

.inbound-details .phone-details-title {
    color: #059669;
}

.outbound-details .phone-details-title {
    color: #d97706;
}

.phone-form-group {
    margin-bottom: 16px;
}

.phone-form-label {
    display: block;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.phone-form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.2s ease;
    background: #ffffff;
}

.phone-form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-form-input::placeholder {
    color: #9ca3af;
}

.phone-form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.2s ease;
    background: #ffffff;
}

.phone-form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-form-textarea::placeholder {
    color: #9ca3af;
    line-height: 1.4;
}

.phone-config-name-input {
    font-weight: 500;
}

.phone-config-name-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.phone-next-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.phone-next-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.phone-next-btn.disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .phone-step3-direction-container {
        padding: 16px;
        margin: 16px 0;
    }
    
    .phone-direction-details {
        padding: 16px;
    }
    
}

.phone-direction-dropdown:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.phone-direction-details.validated {
    border-color: #10b981;
    background: #f0fdf4;
}

.phone-form-group:focus-within .phone-form-label {
    color: #3b82f6;
}

.direction-explanation {
    margin-top: 8px;
    font-size: 13px;
    color: #444;
    background: #f8fafd;
    border-left: 4px solid #667eea;
    border-radius: 6px;
    padding: 10px 14px;
    line-height: 1.6;
    transition: background 0.2s;
}

.direction-explanation b {
    color: #3f51b5;
}

.direction-explanation:before {
    content: "💡";
    margin-right: 7px;
    font-size: 14px;
    vertical-align: middle;
    opacity: 0.75;
}

/* Bot Type Cards Container */
#modern-bot-type-cards {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-bot-type-card.modern-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
    outline: none;
}

.phone-bot-type-card.modern-btn:hover {
    border-color: #5078ff;
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(80, 120, 255, 0.12);
}

.phone-bot-type-card.modern-btn.selected {
    border-color: #5078ff;
    background: #f0f4ff;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 36px rgba(80, 120, 255, 0.16);
}

.bot-type-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.bot-type-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    display: block;
}

.bot-type-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
    display: block;
}

.phone-bot-type-card.modern-btn:focus {
    border-color: #5078ff;
    box-shadow: 0 0 0 3px rgba(80, 120, 255, 0.1);
}

@media (max-width: 768px) {
    #modern-bot-type-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-bot-type-card.modern-btn {
        min-width: 280px;
        max-width: 320px;
    }
}

/* ==============================
   Configuration Management Card
   ============================== */

.configuration-management-card {
    border: 1px solid #e1e5e9;
    border-radius: 10px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 20px;
    margin: 15px;
    transition: all 0.3s ease;
}

.configuration-management-card:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.createConfigurationManagementCard-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.createConfigurationManagementCard-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.createConfigurationManagementCard-date {
    font-size: 0.85rem;
    color: #666;
}

.createConfigurationManagementCard-details {
    margin: 10px 0;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #333;
}

.createConfigurationManagementCard-bot-type {
    display: flex;
    align-items: center;
    gap: 5px;
}

.createConfigurationManagementCard-bot-type-text {
    font-weight: 500;
    color: #333;
}

.createConfigurationManagementCard-bot-type-badge.phone {
    color: #ffffff;
    background: #28a745;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.createConfigurationManagementCard-bot-type-badge.text {
    color: #ffffff;
    background: #007bff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.createConfigurationManagementCard-direction,
.createConfigurationManagementCard-phone-type,
.createConfigurationManagementCard-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.createConfigurationManagementCard-direction-text,
.createConfigurationManagementCard-phone-type-text,
.createConfigurationManagementCard-numbers-text {
    font-weight: 500;
    color: #333;
}

.createConfigurationManagementCard-direction-type,
.createConfigurationManagementCard-phone-type-value,
.createConfigurationManagementCard-numbers-count {
    font-weight: 600;
    color: #1a1a1a;
}

.createConfigurationManagementCard-buttons-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.createConfigurationManagementCard-button-edit-configuration,
.createConfigurationManagementCard-button-delete-configuration {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.9rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    color: #ffffff;
}

.createConfigurationManagementCard-button-edit-configuration {
    background: #667eea;
}

.createConfigurationManagementCard-button-edit-configuration:hover {
    background: #5563c1;
}

.createConfigurationManagementCard-button-delete-configuration {
    background: #e74c3c;
}

.createConfigurationManagementCard-button-delete-configuration:hover {
    background: #c0392b;
}

/* Configuration Selector in dashboard*/


.loadconfigurationselector-create-chat-bot {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
}


.configuration-grid-create-chat-bot {
    display: grid;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
}

.configuration-selector-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 10px;
    margin-top: 3px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(60, 60, 65, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.configuration-selector-card:hover {
    background: rgba(100, 100, 105, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.configuration-selector-card.selected {
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #667eea;
    color: white;
}

.configuration-card-name-create-chat-bot {
    text-align: left;
    margin: 0 0 6px 0;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.configuration-card-create-chat-bot-traits {
    text-align: left;
    margin-bottom: 8px;
}

.configuration-card-type-create-bot{
    display: inline-block;
    background: rgba(123, 31, 162, 0.2);
    color: #CE93D8;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid rgba(123, 31, 162, 0.3);
}
.configuration-card-behavior-create-bot {
    display: inline-block;
    background: rgba(25, 118, 210, 0.2);
    color: #64B5F6;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    margin-right: 4px;
    margin-bottom: 2px;
    border: 1px solid rgba(25, 118, 210, 0.3);
}

.configuration-card-direction-create-bot{
    display: inline-block;
    background: rgba(255, 87, 34, 0.2);
    color: #FF8A65;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.configuration-card-date-create-bot {
    margin: 0 0 8px 0;
    color: white;
    font-size: 10px;
    opacity: 0.8;
}

.configuration-card-actions-create-bot {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-top: 8px;
}

.configuration-card-edit-create-bot {
    background: #9C27B0;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.configuration-card-edit-create-bot:hover {
    background: #7B1FA2;
}

.configuration-card-delete-create-bot {
    background: #f44336;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 500;
    margin-left: auto;
    transition: background 0.2s ease;
}

.configuration-card-delete-create-bot:hover {
    background: #c82333;
}

/* Empty State */
.configuration-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(60, 60, 65, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.configuration-empty-state h3 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.configuration-empty-state p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}



@media screen and (max-width: 480px) {
    .loadconfigurationselector-create-chat-bot {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
}
   
    
    .configuration-selector-card {
        padding: 10px;
        margin-right: 0;
    }
}