.btSpecial.bt_bb_steps .bt_bb_inner_step .bt_bb_inner_step_content .bt_bb_inner_step_line {
    background: linear-gradient(90deg,rgb(31 11 133) 20%,#1000fd 100%);
    flex: 1 0 40%;
}
.btSpecial.bt_bb_steps .bt_bb_inner_step .bt_bb_inner_step_content .bt_bb_inner_step_colored_icon svg {
    width: 9em;
    height: 9em;
}

.bt_bb_custom_menu div ul li {
    padding-bottom: 0.6em;
}
.bt-site-footer .bt_bb_text p {
    line-height: 1.7;
}

.bt_bb_custom_menu div ul a {
    font-size: .85em;
}

.bt_footer_row .bt_bb_custom_menu .menu li a {
    text-decoration: underline;
}
.bt_footer_row .bt_bb_custom_menu.bt_bb_direction_horizontal div > ul > li {
    float: none;
}
.btContact.btRound .btContactButton input[type='submit'] {
    line-height: 2.5;
}
@media (max-width: 480px) {
.bt_bb_steps .bt_bb_inner_step .bt_bb_inner_step_line {
    right: 3em !important;
	}}





/* --- Kahya Pertev Sayfa CSS Stili, Kaan ekledi (New Code) --- */
/* Page-level fix to prevent horizontal scrollbars */
.page-id-5283 {
    overflow-x: hidden;
}

/* Main App Container: Full-width breakout and centering (This part is correct and stays) */
.page-id-5283 #app {
    display: flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1400px;
    height: 85vh;
    margin: 5rem 0;
    background-color: #1E1E1E;
    color: #E0E0E0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* --- App İçindeki Elementler İçin Yeni Strateji --- */

/* Main Layout Containers */
.page-id-5283 #app .chat-container {
    position: relative; /* ADD THIS LINE - It's crucial for positioning the records */
    flex-basis: 100%; /* CHANGE THIS from 70% to 100% */
    display: flex;
    flex-direction: column;
    border-right: 1px solid #333;
}

.page-id-5283 #app .records-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%; /* Chat alanını genişletmek için daralttım */
    height: calc(100% - 85px);
    padding: 30px; /* Üstten boşluk için */
    display: flex;
    flex-direction: column;
    border-left: 1px solid #333; /* Sütunlar arası çizgiyi ekledim */
}

/* Guide Button: Artık güvenli bir şekilde chat-container'ın içinde */
.page-id-5283 #app .guide-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.page-id-5283 #app .guide-button {
    padding: 8px 15px;
    background-color: #2C2C2C;
    color: #E0E0E0;
    border: 1px solid #333;
    border-radius: 15px;
    cursor: pointer;
}

.page-id-5283 #app .guide-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; /* Butonla hizalı */
    margin-top: 5px;
    background-color: #1E1E1E;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    width: 600px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    white-space: pre-wrap;
}

.page-id-5283 #app .guide-container:hover .guide-content {
    display: block;
}


/* Chat Window: Buton için yer açmak amacıyla üstten biraz boşluk ekliyoruz */
.page-id-5283 #app .chat-window {
    width: 100%; /* ADD THIS LINE - Makes room for the records on the right */
    flex-grow: 1;
    padding: 20px;
    padding-top: 80px; 
    overflow-y: auto;
}


/* Records Section Elements */
.page-id-5283 #app .records-container h3 {
    color: #BB86FC; /* Rengi düzelttim */
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin: 0 0 20px 0; /* Üstteki yapışıklığı giderdim */
}
.page-id-5283 #app .records-list {
    list-style: none; padding: 10px; margin: 0; max-height: 19vh; overflow-y: auto; border: 1px solid #333; border-radius: 4px;
}
.page-id-5283 #app .records-list li {
    background-color: #2C2C2C; padding: 8px 12px; border-radius: 4px; margin-bottom: 8px; font-size: 0.9em;
}

/* Message Elements */
.page-id-5283 #app .message {
    margin-bottom: 15px; display: flex; flex-direction: column;
}
.page-id-5283 #app .message .sender {
    font-weight: bold; font-size: 0.9em; margin-bottom: 5px; color: #BB86FC;
}
.page-id-5283 #app .message .content {
    background-color: #2C2C2C; padding: 10px 15px; border-radius: 18px; max-width: 95%; white-space: pre-wrap; word-wrap: break-word;
}
.page-id-5283 #app .message.user {
    align-items: flex-end;
}
.page-id-5283 #app .message.user .content {
    background-color: #BB86FC; color: #121212;
}
.page-id-5283 #app .message.user .sender {
    color: #E0E0E0;
}

/* Input Area Elements */
.page-id-5283 #app .input-area {
    width: 100%; /* ADD THIS LINE - Aligns the input area with the chat window */
    padding: 20px;
    display: flex;
    border-top: 1px solid #333;
}
.page-id-5283 #app input[type="text"] {
    flex-grow: 1; background-color: #2C2C2C; border: 1px solid #444; border-radius: 20px; padding: 10px 15px; color: #E0E0E0; font-size: 1em; outline: none; line-height: normal;
}
.page-id-5283 #app input[type="text"]:focus {
    border-color: #BB86FC;
}
.page-id-5283 #app button {
    margin-left: 10px; background-color: #BB86FC; color: #121212; border: none; border-radius: 20px; padding: 10px 20px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; line-height: normal;
}
.page-id-5283 #app button:disabled {
    background-color: #555; cursor: not-allowed;
}