/* asd */
    :root {
        --primary-color: #749f74;
        --white-color: #ffffff;
        --black-color: #333333;
        --light-gray: #f5f5f5;
        --hover-color: #5e835e;
    }

    .docc-container {
        display: flex;
        width: 100%;
        max-width: 1400px;
        margin: 20px auto;
        background-color: var(--white-color);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .docc-menu {
        width: 280px;
        min-width: 280px;
        background-color: var(--white-color);
        border-right: 1px solid var(--light-gray);
    }

    .docc-menu-header {
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 20px;
        text-align: center;
    }

    .docc-menu-items {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .docc-menu-items li {
        padding: 12px 20px;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

    .docc-menu-items li:hover {
        background-color: var(--light-gray);
        border-left: 4px solid var(--primary-color);
    }

    .docc-menu-items li.active {
        background-color: var(--light-gray);
        border-left: 4px solid var(--primary-color);
    }

    .docc-menu-items li.active a {
        font-weight: bold;
    }

    .docc-menu-items a {
        color: var(--black-color);
        text-decoration: none;
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .docc-menu-items a i {
        margin-right: 10px;
        color: var(--primary-color);
        font-size: 18px;
        width: 24px;
        text-align: center;
    }

    .docc-content {
        flex: 1;
        padding: 40px;
        background-color: var(--white-color);
    }

    /* İçerik bölümleri için stiller */
    .docc-content-section {
        display: none;
    }

    .docc-content-section.active {
        display: block;
    }

    .docc-content-section h1 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 28px;
    }

    .docc-content-section h2 {
        color: var(--black-color);
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .docc-content-section p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .docc-content-section p.date {
        font-style: italic;
        color: #666;
        margin-bottom: 25px;
    }

    @media (max-width: 768px) {
        .docc-container {
            flex-direction: column;
            margin: 0;
            border-radius: 0;
        }
        
        .docc-menu {
            width: 100%;
            min-width: 100%;
            border-right: none;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .docc-content {
            padding: 20px;
        }
    } 

