.text-area-header .text-area-small-title {
    font-size: 19px;
    font-weight: 600;
}

.text-area-container {
    background-color: #f8f8fb;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.text-area-body {
    padding-top: 50px;
    color: rgba(68, 68, 68, 1);
    font-size: 19px;
    max-height: 400px;
    overflow-x: auto;
}

/* Scrollbar genişliği */
.text-area-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.text-area-body::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
}

.text-area-body::-webkit-scrollbar-thumb {
    background: #161a33;
    border-radius: 4px;
}

.text-area-body::-webkit-scrollbar-thumb:hover {
    background: #0e1120;
}


@media (max-width: 992px) {
    .section-header h3 {
        font-size: 25px;
    }

    .section-header p {
        font-size: 14px
    }
    .section-header {
        margin-bottom: 10px;
    }
    .text-area-body {
        font-size: 15px;
    }
}