
.kurye-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    overflow: hidden; overflow-x: auto;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kurye-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #3182ce;
}
 
.kurye-header {
    padding: 20px;
    background: linear-gradient(to right, #f8fafc, #ffffff);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.kurye-avatar-container {
    position: relative;
}

.kurye-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.online-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #48bb78;
    border: 2px solid #fff;
    border-radius: 50%;
}

.kurye-isim {
    font-weight: 700;
    font-size: 1rem;
    color: #2d3748;
    margin: 0;
}

.kurye-unvan {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.kurye-content {
    padding: 15px 20px;
    flex-grow: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #4a5568;
}

    .info-item i {
        font-size: 1.1rem;
        width: 20px;
    }
     
.kurye-footer {
    padding: 15px 20px;
    background: #f8fafc;
}

.btn-paketleri-gor {
    width: 100%;
    background: #3182ce;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btn-paketleri-gor:hover {
        background: #2b6cb0;
        box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
    } 

/* ===== OTOMATİK EKLENEN RESPONSIVE KURALLAR ===== */
@media (max-width: 768px) {
    /* Tablo overflow */
    .table-responsive-sm { overflow-x: auto !important; }
    
    /* Kart ve panel başlıkları */
    .card .header h2,
    .card .header h3 {
        font-size: 1rem !important;
        line-height: 1.4;
    }
    
    /* Buton grupları */
    .btn-group,
    .nav-align-top {
        flex-wrap: wrap !important;
        gap: 0.25rem;
    }
    
    /* Sabit genişlik taşmalarını engelle */
    /* responsive */
    
    /* Input grup */
    .input-group {
        flex-wrap: wrap;
    }
    
    /* Modal tam ekran mobilde */
    .modal-dialog {
        margin: 0.5rem !important;
        max-width: calc(100vw - 1rem) !important;
    }
    
    /* Section padding */
    section.content {
        padding: 0.5rem !important;
    }
    
    /* Footer images */
    .footerimages-row img {
        width: 60px !important;
        height: 60px !important;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    /* Ekstra küçük ekranlar */
    .card {
        margin-bottom: 0.75rem;
    }
    
    /* responsive xs */
    
    /* Başlık font küçült */
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    
    /* Buton metni gizle, sadece ikon göster (isteğe bağlı) */
    .btn-action { padding: 0.35rem 0.5rem; }
}
