/* =================== GENEL STİL =================== */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* =================== BREADCRUMB (Sayfa Yolu) =================== */
.header {
    display: flex;
    max-width: 1100px;
    margin: 5px auto;
    background: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 2px 50px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 90px;
    backdrop-filter: blur(10px); 
}

.breadcrumb {
    font-size: 15px;
    background: none;  /* Arka planı kaldır */
    box-shadow: none;  /* Gölgeyi kaldır */
    border: none;  /* Kenarlık kaldır */
    margin-bottom: 0px;
}

.breadcrumb a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumb a:hover {
    color: #0b4a3c;
    text-decoration: underline;
}

/* =================== ANA KONTEYNER =================== */
.container {
    display: flex;
    max-width: 1100px;
    background: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    backdrop-filter: blur(10px); 
    border: 1px solid #ccc;
}

/* =================== SOL SÜTUN (Konular/Yorumlar) =================== */
.left-section {
    width: 70%;
    padding: 25px;
    background: transparent;
    border-right: 1px solid #ccc;
    border-radius: 10px 0 0 10px;
}

/* =================== SAĞ SÜTUN (Yeni Konu Aç) =================== */
.right-section {
    width: 30%;
    padding: 25px;
    background: transparent;
    border-radius: 0 10px 10px 0;
}



/* =================== FORM VE GİRİŞ ALANLARI =================== */
.form-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(81, 81, 81, 0.1);
    border-radius: 10px;
    border: 1px solid #ccc;
}

/* Sağ taraftaki form konteynerini daha iyi hizala */
.right-section .form-container {
    margin-top: 10px; /* Üstten biraz boşluk bırak */
}

input, textarea {
    width: 100%;
    margin: 5px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

input:focus, textarea:focus {
    border-color: #137661;
    box-shadow: 0 0 6px rgba(13, 147, 103, 0.3);
    outline: none;
}

/* =================== BUTONLAR =================== */
button {
    background-color: #137661;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

button:hover {
    background-color: #0b4a3c;
    transform: scale(1.02);
}

.button-container {
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center;
}
/* =================== FORUM KONULARI =================== */
.thread-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thread-box {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-left: 5px solid #137661;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    overflow: hidden;
}

.thread-box h3 {
    font-size: 18px;
    margin: 0;
    color: #137661;
}

.thread-box p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.thread-box:hover {
    background: #e9f5ff;
    transform: translateY(-3px);
}

/* =================== YORUMLAR =================== */
.comment-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.comment-box {
    background: transparent;
    padding: 12px;
    border-left: 4px solid #137661;
    border-radius: 6px;
    margin-bottom: 10px;
}

.comment-box p {
    margin: 5px 0;
    font-size: 14px;
}

.comment-box small {
    color: #666;
    font-size: 12px;
}

/* =================== RESPONSİVE TASARIM =================== */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
        border-radius: 10px;
        border-right: none;
        padding: 20px;
    }

    .right-section {
        background: #f4f4f4;
        padding: 20px;
    }
}

/* =================== FADE-IN ANİMASYON =================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =================== GİZLEME/GÖSTERME =================== */
.hidden {
    display: none !important;
}
