﻿.members-table {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-collapse: collapse;
}

/* Header blu me tekst të bardhë */
.members-header {
    display: flex;
    background-color: #98cbed;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 5px 5px 0 0;
}

.members-header .col {
    color: white;
}

/* Rreshtat e anëtarëve */
.member-row {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px;
    align-items: center;
}

.member-row:nth-child(even) {
    background-color: #f9f9f9;
}

/* Kolonat */
.col {
    padding: 10px;
}

/* Kolona: Foto */
    .col.image {
        width: 15%;
        min-width: 80px;
        color: #1a202c;
    }

.col.image img {
    max-height: 40px;
    max-width: 100px;
    object-fit: contain;
}

/* Kolona: Kompani / Adresë */
.col.company {
    width: 35%;
    font-size: 14px;
    color: #1a202c;
}

/* Kolona: Kontakt (telefon, email) */
.col.contact {
    width: 35%;
    font-size: 14px;
    color: #1a202c;
}

.col.contact a {
    color: #006aff;
    text-decoration: none;
}

/* Kolona: Kodi */
.col.code {
    width: 15%;
    font-weight: bold;
    color: #4a5568;
    text-align: right;
}

/* Responsivitet për mobile */
@media (max-width: 768px) {
    .members-header,
    .member-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .col {
        width: 100% !important;
        padding: 5px 0;
    }

    .col.code {
        text-align: left;
    }

    .col.image img {
        max-height: 30px;
    }
}
