body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    gap: 40px;
}

    header img {
        height: 50px;
        margin-right: 30px;
    }

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.main-content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    margin-left: 20px;
    border-radius: 6px;
}

.highlight {
    background-color: #61B329;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid #f0c000;
    color: white;
}

.badge-onay {
    background: #45c959;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 15px;
    margin-right: 10px;
}

.badge-pasif {
    background: #e34848;
    color: #fff;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    font-size: 15px;
    margin-right: 10px;
}

.info-strip {
    background-color: #ff9c2d;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 18px;
    margin-top: 5px;
    border: 2px solid #ffe6c7;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #eee;
    margin-right: 5px;
    margin-bottom: 5px;
}

    .tab.active {
        background-color: #fff;
        border-top: 2px solid #007acc;
        font-weight: bold;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    table th, table td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
    }

    table th {
        background-color: #f0f0f0;
    }

h3 {
    margin-top: 40px;
}

.stats-row {
    margin: 18px 0 0 0;
    text-align: right;
    color: #545454;
    font-size: 15px;
}
/* Arama kutusu ve responsive */
.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

.search-row {
    display: flex;
    gap: 8px;
    max-width: 350px;
    align-items: center;
    margin-bottom: 10px;
}

#vknSearch {
    width: 180px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#btnVknAra {
    padding: 8px 20px;
    background: #007acc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

    #btnVknAra:hover {
        background: #035a94;
    }


.fpz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 30px;
    border-bottom: 1px solid #ddd;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fpz-logo {
    height: 50px;
    margin-right: 12px;
}

.fpz-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .fpz-nav a {
        margin: 0 10px;
        text-decoration: none;
        color: #003B6F;
        font-weight: bold;
        font-size: 17px;
        transition: color 0.2s;
    }

        .fpz-nav a:hover {
            color: #0277BD;
        }

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login, .btn-logout {
    background: #007acc;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 16px;
}

    .btn-login:hover, .btn-logout:hover {
        background: #045c93;
    }

.user-welcome {
    font-size: 15px;
    color: #2d3544;
}
/* Responsive */
@media (max-width: 800px) {
    .fpz-header {
        flex-direction: column;
        gap: 12px;
        padding: 8px 10px;
    }

    .header-left {
        flex-direction: column;
        gap: 10px;
    }

    .fpz-nav {
        flex-wrap: wrap;
    }

        .fpz-nav a {
            margin: 5px 8px;
            font-size: 15px;
        }

    .header-right {
        gap: 8px;
    }
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding: 7px;
    }

    .main-content {
        margin-left: 0;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .search-row {
        flex-direction: column;
        align-items: stretch;
    }

    #vknSearch {
        width: 100%;
    }
}
