.eks-talep-container {
    max-width: 78.2rem;
    margin: 9rem auto;
    padding: 2rem;
    background-color: #f9fcfd;
    border-radius: 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.eks-talep-title {
    font-size: 2rem;
    font-weight: bold;
    color: #007782;
    margin-bottom: 0.5rem;
    text-align: center;
}

.eks-talep-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.eks-talep-empty {
    color: #999;
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
}

.eks-talep-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.eks-talep-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.eks-talep-baslik {
    font-size: 1.2rem;
    color: #007782;
    margin: 0;
}

.eks-talep-durum {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.eks-beklemede {
    background-color: #ffc107;
    color: #000;
}

.eks-olumlu {
    background-color: #28a745;
}

.eks-olumsuz {
    background-color: #dc3545;
}

.eks-iptal {
    background-color: #6c757d;
}

.eks-talep-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.eks-talep-prof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eks-talep-prof img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007782;
}

.eks-talep-aksiyon {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.eks-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    border: none;
}

.eks-btn-primary {
    background-color: #007782;
    color: white;
}

.eks-btn-primary:hover {
    background-color: #005f67;
}

.eks-btn-outline {
    border: 1px solid #007782;
    color: #007782;
    background-color: transparent;
}

.eks-btn-outline:hover {
    background-color: #007782;
    color: white;
}