.ge-sanjeev-body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #0af;
    display: flex;
    flex-direction: column;
    align-items: center;
    xmin-height: 200px; /* 100vh; */
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.ge-sanjeev-conversation, .ge-sanjeev-debugInfo {
    width: 90%;
    max-width: 800px;
    margin: 10px 0;
    padding: 10px;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,175,255,0.3);
    height: 150px; /* 35vh; */
    overflow-y: auto;
    border: 2px solid #0af;
    font-family: 'Courier New', monospace;
    font-size: 14px;
	user-select: text;
	-webkit-user-select: text;
}

.ge-sanjeev-body h1 {
    color: #0af;
    text-shadow: 0 0 10px #0af;
    font-size: 24px;
    margin-bottom: 10px;
}

.ge-sanjeev-body button {
    background: #0af;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.ge-sanjeev-body button:hover {
    background: #00ccff;
    box-shadow: 0 0 20px #00ccff;
}

.ge-sanjeev-body button:disabled {
    background: #555;
    cursor: not-allowed;
}

.ge-sanjeev-user {
    color: #0f0;
    font-weight: bold;
}

.ge-sanjeev-ai {
    color: amber;
    font-weight: bold;
}

.ge-sanjeev-error {
    color: #f00;
    font-style: italic;
}

.ge-sanjeev-status {
    font-style: italic;
    margin-top: 10px;
    font-size: 14px;
}

.ge-sanjeev-voiceIndicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    margin-top: 10px;
    transition: all 0.3s;
}

.ge-sanjeev-voiceIndicator.listening {
    background: #FFBF00 ;
    box-shadow: 0 0 20px #FFBF00;
}

.ge-sanjeev-voiceIndicator.speaking {
    background: cyan;
    box-shadow: 0 0 20px cyan;
}

.ge-sanjeev-voiceIndicator.processing {
    background: green;
    box-shadow: 0 0 20px green;
}

.ge-sanjeev-currentSpeech {
    width: 90%;
    max-width: 800px;
    margin: 10px 0;
    padding: 10px;
    background: #222;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    min-height: 50px;
}

.ge-sanjeev-aiSelect {
    background: #0af;
    color: #000;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.ge-sanjeev-aiSelect option {
    background: #000;
    color: #0af;
}

.ge-sanjeev-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.ge-sanjeev-tab {
    background: #0af;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.ge-sanjeev-tab:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.ge-sanjeev-tab:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ge-sanjeev-tab.active {
    background: #00ccff;
    box-shadow: 0 0 20px #00ccff;
}
 