/* === Temel Genel Stil === */
.eks-container {
    max-width: 78.2rem;
    margin: 120px auto;
    display: flex;
    gap: 20px;
    padding: 2rem 1rem;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    width: 78.2rem;
}

.eks-sidebar {
    width: 250px;
    background-color: #e8f6f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d6e9ec;
}

.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;
}

.eks-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 40px;
}

.eksper-welcome {
    margin-bottom: 30px;
}

.eksper-welcome h1 {
    color: #007782;
    font-size: 2rem;
    margin-bottom: 10px;
}

.eksper-welcome p {
    color: #444;
    font-size: 1.1rem;
}

.eksper-tanitim {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.eksper-tanitim .text {
    flex: 1;
}

.eksper-tanitim h2 {
    color: #007782;
    margin-bottom: 15px;
}

.eksper-tanitim p {
    color: #555;
    margin-bottom: 12px;
}

.eksper-tanitim .buttons {
    margin-top: 20px;
}

.eksper-tanitim .buttons a {
    margin-right: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.eksper-tanitim img {
    max-width: 300px;
    border-radius: 12px;
}

.eksper-info-card {
    display: flex;
    gap: 2rem;
    margin-top: 30px;
    background-color: #f9fdfd;
    padding: 25px;
    border: 1px solid #d6e9ec;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.eksper-info-text {
    flex: 1;
}

.eksper-info-text h2 {
    color: #007782;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.eksper-info-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.eksper-info-text ul li {
    margin-bottom: 10px;
}

.eksper-buttons a {
    margin-right: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.eksper-buttons a:hover {
    background-color: #006682;
    color: white;
}

.btn-mavi {
    background-color: #007782;
    color: white;
}

.btn-ikincil {
    border: 1px solid #007782;
    color: #007782;
    background-color: transparent;
}

.eksper-info-image img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #ccc;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.eksper-info-image img:hover {
    transform: scale(1.03);
}

/* Profil Sayfası */
.eks-pro-container {
    max-width: 78.2rem;
    margin: 120px 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;
}

/* 481px - 768px (tablet) */
@media (min-width: 481px) and (max-width: 768px) {
    .eks-container {
        flex-direction: column;
        margin-top: 240px !important;
    }

    .eks-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .eks-content {
        padding: 25px;
    }

    .eksper-tanitim {
        flex-direction: column;
        text-align: center;
    }
}

/* 480px ve altı (mobil) */
@media (max-width: 480px) {
    .eks-container {
        flex-direction: column;
        margin-top: 105px;
    }

    .eks-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }

    .eks-content {
        padding: 20px;
    }

    .eksper-tanitim {
        flex-direction: column;
        text-align: center;
    }

    .mob-eksper-card {
        margin-top: 105px;
    }

    .mob-settings-sidebar {
        margin-top: 200px;
    }
}