/* Sayfa genel görünümü */
.eks-container {
    max-width: 78.2rem;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 2rem 1rem;
    margin-top: 110px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* Sol menü */
.eks-sidebar {
    width: 230px;
    background-color: #e8f6f9;
    /* buz mavisi */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d6e9ec;
}

/* Menü linkleri */
.eks-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eks-sidebar li {
    margin-bottom: 12px;
}

.eks-menu-item {
    display: block;
    background-color: white;
    color: #007782;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #cde1e4;
    transition: background 0.2s ease, color 0.2s ease;
}

.eks-menu-item:hover {
    background-color: #007782;
    color: white;
}

/* İçerik kısmı */
.eks-content {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 30px;
    width: 35rem;
}

/* Profil Sayfası için Ek Stiller */
.eks-pro-container {
    max-width: 78.2rem;
    margin: 115 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.eks-pro-page-title {
    color: #007782;
    font-size: 24px;
    margin-bottom: 20px;
}

.eks-pro-top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.eks-pro-user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.eks-pro-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.eks-pro-kazanc-kutu {
    background-color: #e8f6f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.eks-pro-kesintiler p {
    margin: 5px 0;
    color: #555;
}

.eks-pro-filtreler a {
    padding: 8px 15px;
    margin-right: 10px;
    text-decoration: none;
    color: #007782;
    border: 1px solid #cde1e4;
    border-radius: 6px;
}

.eks-pro-filtreler a.aktif {
    background-color: #007782;
    color: #fff;
}

.eks-pro-table-wrapper {
    overflow-x: auto;
}

.eks-pro-table {
    width: 100%;
    border-collapse: collapse;
}

.eks-pro-table th,
.eks-pro-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.eks-pro-table th {
    background-color: #e8f6f9;
    color: #007782;
}