﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,900');

.main-content {
    background-color: #f2f2f2 !important;
    font-family: 'Poppins' !important;
}

.card {
    border: var(--bs-card-border-width) solid #9ACD66 !important;
    padding: 2rem !important;
    margin: 85px 0px 1px 8px !important;
    border-radius: 1.2rem;
}

.card-body h1 {
    font-size: 2rem;
    padding: 1rem 0;
    font-weight: normal;
    color: #0077C8;
}

.card-body label {
    font-weight: 500 !important;
    padding: .375rem 0.25rem .375rem .75rem !important;
    margin-bottom: 0 !important;
}

h2 {
    font-size: 1.5rem !important;
    color: #0175C0 !important;
    padding: 1rem 0 !important;
    font-weight:600;
}

.card-header {
    background-color: transparent !important;
}

.bolge-alt-cizgi {
    max-width: 100% !important;
    height: 1px !important;
    background-color: #9ACD66 !important;
    margin: 0 auto 50px auto !important;
}

.yonetim-container {
    margin: 20px auto;
    background: #fff;
    border-radius: 20px;
    padding: 0 0 40px 0;
}

.tab-menu {
    display: flex;
    border-bottom: 2px solid #e6e6e6;
    margin-bottom: 50px;
    background: #fff;
}

.tab-item {
    flex: 1;
    text-align: center;
    padding: 24px 0 12px 0;
    font-size: 1rem;
    color: #b0b0b0;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
    letter-spacing: 0.5px;
}

    .tab-item.active {
        color: #1780d0;
        border-bottom: 3px solid #1780d0;
        background: #fff;
    }


.board-member {
    border: 1px solid #b6e1a4;
    border-radius: 20px;
    margin: 10px 0;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    position: relative;
    background: #fff;
}

.member-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.member-info {
    display: flex;
    align-items: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-right: 30px;
    background: #eee;
}

.member-details {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.member-title {
    font-size: 1rem;
    color: #444;
}

.plus-btn {
    font-size: 3rem;
    color: #9ed36a;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
}

    .plus-btn.open {
        transform: rotate(45deg);
    }

.collapsible-content {
    display: none;
    padding: 20px 0 0 150px;
    font-size: 1.1rem;
    color: #333;
    animation: fadeIn 0.3s;
}

    .collapsible-content.open {
        display: block;
    }
.divmrg {
    padding-right: 0px !important;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .yonetim-container {
        padding: 0 0 20px 0;
    }

    .tab-menu {
        padding: 0 10px;
    }

    .board-member {
        padding: 10px 10px;
    }

    .collapsible-content {
        padding-left: 0;
    }

    .member-photo {
        width: 80px;
        height: 80px;
        margin-right: 10px;
    }
}


