/* === ANA KAPSAYICI === */
.eks-pro-container {
    width: 78.2rem;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9fcfd;
    border-radius: 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    position: relative;
}

/* === BAŞLIK === */
.eks-pro-page-title {
    font-size: 2.4rem;
    color: #007782;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* === ÜST BLOK === */
.eks-pro-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

/* === SOL KISIM: KULLANICI PROFİL === */
.eks-pro-user-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.eks-pro-user-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #007782;
    object-fit: cover;
}

.eks-pro-user-box h2 {
    margin: 0;
    color: #007782;
}

.eks-pro-user-box p {
    margin: 0.25rem 0;
}

/* === SAĞ KISIM: TOPLAM KAZANÇ === */
.eks-pro-kazanc-kutu {
    background-color: #e6f4f6;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-align: center;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.eks-pro-kazanc-kutu strong {
    display: block;
    font-size: 1.6rem;
    color: #007782;
    margin-top: 0.25rem;
}

.eks-pro-kesintiler p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

/* === FİLTRELER === */
.eks-pro-filtreler {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.5rem 0;
    justify-content: flex-start;
}

.eks-pro-filtreler a {
    padding: 0.5rem 1rem;
    border: 1px solid #007782;
    color: #007782;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: 0.2s;
}

.eks-pro-filtreler a:hover,
.eks-pro-filtreler a.aktif {
    background-color: #007782;
    color: white;
}

/* === TABLO === */
.eks-pro-table-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid #d1d1d1;
}

.eks-pro-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    min-width: 100%;
}

.eks-pro-table th,
.eks-pro-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.eks-pro-table th {
    background-color: #007782;
    color: white;
}

.eks-pro-table td {
    background-color: #f5f7f8;
    white-space: nowrap;
}

.eks-pro-table td:nth-child(6) {
    color: #e4572e;
    font-weight: 600;
}

.eks-pro-table td:last-child {
    font-weight: bold;
    color: #007782;
}

/* === SAYFALAMA === */
.eks-pro-pagination {
    margin-top: 1.5rem;
    text-align: center;
}

.eks-pro-pagination nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.eks-pro-pagination .pagination {
    display: flex;
    gap: 0.5rem;
}

.eks-pro-pagination .page-item {
    list-style: none;
}

.eks-pro-pagination .page-link {
    padding: 0.4rem 0.9rem;
    border: 1px solid #007782;
    border-radius: 0.4rem;
    color: #007782;
    background-color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.eks-pro-pagination .page-item.active .page-link,
.eks-pro-pagination .page-link:hover {
    background-color: #007782;
    color: white;
}