﻿
/* LIV DEVELOP CSS 

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

.livdevelop-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.livdevelop-brand:hover {
    color: #3498db;
    transform: scale(1.02);
    text-decoration: none; 
}
*/

/* PRELOADER CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

#custom-modal-overlay {
    position: fixed; /* Sayfaya göre sabitlenir */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah */
    z-index: 100; /* jqxWindow'un z-index'inden (101) bir düşük olmalı */
    display: none; /* Başlangıçta gizli */
}

.pl-loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    /*background: rgb(32,88,136);
    background: -moz-linear-gradient(160deg, rgba(32,88,136,1) 0%, rgba(20,27,123,1) 60%, rgba(185,78,99,1) 100%);
    background: -webkit-linear-gradient(160deg, rgba(32,88,136,1) 0%, rgba(20,27,123,1) 60%, rgba(185,78,99,1) 100%);
    background: linear-gradient(160deg, rgba(32,88,136,1) 0%, rgba(20,27,123,1) 60%, rgba(185,78,99,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#205888",endColorstr="#b94e63",GradientType=1);*/
    z-index: 1000;
}

.pl-txt {
    /*color: #fd6986;*/
    color: black;
    text-align: center;
    top: 40%;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.pl-spinner {
    position: relative;
    top: 35%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* AI PANEL CSS */

#livyai_input_control {
    position: relative;
    width: 100%;
    padding: 5px 0; /* Üst ve alttan biraz boşluk */
}

#livyai_promp {
    width: 100%; /* Kapsayıcının tamamını kapla */
    height: 45px; /* Standart bir yükseklik */
    padding-left: 15px; /* Metnin soldan başlaması için boşluk */
    /* EN ÖNEMLİ KISIM: Sağdaki butona yer açmak için iç boşluk.
     Bu sayede yazılan metin butonun altına girmez. */
    padding-right: 50px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px; /* Köşeleri yuvarlat */
    /* padding ve border'ın genişliği etkilememesi için */
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Input alanına odaklanıldığında daha belirgin hale getirelim */
#livyai_promp:focus {
    outline: none;
    border-color: #009879; /* Tablo başlığınızla uyumlu renk */
    box-shadow: 0 0 5px rgba(0, 152, 121, 0.5); /* Hafif bir parlama efekti */
}

/* Sesli komut butonu */
#livyai_voice_input {
    /* Butonu, #livyai_control div'ine göre mutlak konumlandırıyoruz */
    position: absolute;
    /* Konumlandırma */
    right: 10px; /* Sağ kenardan 10px içeride */
    top: 50%; /* Dikeyde ortalamak için ilk adım */
    transform: translateY(-50%); /* Dikeyde kusursuz ortalama */
    /* Butonun varsayılan stillerini sıfırlama */
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    /* Font Awesome ikonunun stili */
    color: #666; /* İkon rengi */
    font-size: 1.5em; /* İkonu biraz daha büyük yapalım */
    /* Tıklama alanını ve geçiş efektini ayarlama */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

/* Butonun üzerine gelindiğinde rengini değiştir */
#livyai_voice_input:hover {
    color: #009879; /* Odaklanma rengiyle aynı */
}

/* Butona basıldığında (aktifken) küçük bir efekt */
#livyai_voice_input:active {
    transform: translateY(-50%) scale(0.9);
}

.liv-ai-response {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 300 200'%3E%3Ctext x='50%' y='50%' dominant-baseline='middle' text-anchor='middle' font-size='55' fill='black' fill-opacity='0.3'%3ELIV AI%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #ccc;
    overflow: auto;
}

.liv-ai-response .ai-question {
    background-color: rgba(224, 247, 250, 0.9);
    float: right;
    text-align: right;
    clear: both;
    width: auto;
    margin-left: auto;
    color: #000;
}

.liv-ai-response .ai-answer {
    background-color: rgba(249, 249, 249, 0.9);
    float: left;
    text-align: left;
    clear: both;
    width: auto;
    margin-right: auto;
    color: #000;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.liv-ai-response .ai-question,
.liv-ai-response .ai-answer {
    color: #333;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
    display: inline-block;
    box-sizing: border-box;
    max-width: 80%;
}

.liv-ai-response pre {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    /*white-space: pre-wrap;*/
}

.liv-ai-response .python-code {
    /*white-space: pre-wrap;*/
    tab-size: 4;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-family: 'Courier New', Courier, monospace;
}

.liv-ai-response pre,
.liv-ai-response .python-code {
    background-color: rgba(190, 254, 139, 0.9);
    white-space: pre;
    overflow-x: auto;
}

/* Liv AI Tablo Stili */
table.liv-ai-table {
    width: 100%; /* Tablo genişliği */
    border-collapse: collapse; /* Kenarlıkları birleştir */
    margin: 25px 0; /* Üst ve alt boşluk */
    font-size: 0.9em; /* Yazı tipi boyutu */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Modern yazı tipi */
    min-width: 400px; /* Minimum genişlik */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); /* Hafif gölge efekti */
    border-radius: 5px 5px 0 0; /* Üst köşeleri yuvarlat */
    overflow: hidden; /* Köşe yuvarlatmalarının düzgün görünmesi için */
}

/* Tablo Başlığı (thead) */
table.liv-ai-table thead tr {
    background-color: #009879; /* Kurumsal yeşil tonu */
    color: #ffffff; /* Beyaz yazı */
    text-align: left; /* Sola hizalı metin */
    font-weight: bold; /* Kalın yazı */
}

/* Tüm Hücreler (th ve td) */
table.liv-ai-table th,
table.liv-ai-table td {
    padding: 12px 15px; /* Hücre içi boşluk */
    text-align: left; /* Sola hizalı metin */
}

/* Tablo Gövdesi (tbody) Satırları */
table.liv-ai-table tbody tr {
    border-bottom: 1px solid #dddddd; /* Satır altı çizgisi */
}

/* Her ikinci satır (zebra deseni) */
table.liv-ai-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3; /* Açık gri arka plan */
}

/* En son satırın alt çizgisi */
table.liv-ai-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879; /* Daha kalın ve renkli alt çizgi */
}

/* Aktif veya vurgulanmış satır için özel sınıf */
table.liv-ai-table tbody tr.active-row {
    font-weight: bold; /* Kalın yazı */
    color: #009879; /* Renkli yazı */
}

#app-console-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px; 
    height: 40px; 
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: background-color 0.3s;
}

#app-console-icon i {
    font-size: 18px !important; 
}

#app-console-icon:hover {
    background-color: #0056b3;
}

#app-console-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#app-console-badge.hidden {
    display: none;
}

#app-console-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35vh; 
    background-color: rgba(20, 20, 30, 0.95);
    color: #f1f1f1;
    z-index: 9999;
    transform: translateY(100%); 
    transition: transform 0.3s ease-in-out;
    border-top: 2px solid #007bff;
    display: flex;
    flex-direction: column;
}

#app-console-panel.visible {
    transform: translateY(0);
}

#app-console-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background-color: #25252d;
    font-weight: bold;
    border-bottom: 1px solid #444;
}

#app-console-panel .panel-header button {
    background: #555;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
}

#app-console-panel .panel-header button#app-console-close {
    background: transparent;
    font-size: 24px;
    padding: 0 10px;
}

#app-console-content {
    flex-grow: 1;
    overflow-y: auto; 
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    white-space: pre-wrap; 
}

#app-console-content pre {
    margin: 0 0 5px 0;
    padding: 5px;
    border-bottom: 1px solid #333;
    color: #DDDDDD !important;
    background-color: transparent;
}

#app-console-content .console-timestamp {
    color: #64B5F6; 
    margin-right: 8px; 
}