#main > div.ast-single-author-box > div > div.ast-author-details > div.post-author-avatar > img:nth-child(2) {
    display: none !important;
}

/* --- ALGEMENE STYLING --- */
.portfolio-container {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 15px;
    line-height: 1.6;
}
.portfolio-container h1, .portfolio-container h2, .portfolio-container h3, .portfolio-container h4 {
    color: #1a1a1a;
}
.portfolio-container p {
    color: #555;
}
.portfolio-container hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 50px 0;
}

/* --- HEADER --- */
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}
.portfolio-header h1 {
    font-size: 32px;
}
.portfolio-header .subtitle {
    font-size: 17px;
}
.portfolio-header .last-updated {
    color: #777;
    font-size: 14px;
}

/* --- DASHBOARD --- */
.performance-dashboard {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}
.performance-dashboard h2 {
    margin-top: 0;
    margin-bottom: 20px;
}
.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}
.dashboard-item {
    text-align: center;
    padding: 10px;
    min-width: 180px;
    flex: 1 1 200px;
}
.dashboard-item h3 {
    margin: 0;
    color: #444;
    font-size: 15px;
    text-transform: uppercase;
}
.dashboard-item p {
    font-size: 26px;
    color: #1a1a1a;
    margin: 5px 0;
    font-weight: bold;
}
.positive-return {
    color: #5cb85c !important;
    font-weight: bold;
}

/* --- SECTIE TITELS --- */
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

/* --- RESPONSIVE TABEL (Desktop Standaard) --- */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.responsive-table th, .responsive-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}
.responsive-table thead {
    background-color: #f2f2f2;
}

/* --- COMMUNITY & CTA KNOPPEN --- */
.button-center {
    text-align: center;
    margin-top: 25px;
}
.primary-button {
    background-color: #333;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}
.community-section {
    text-align: center;
    margin: 40px 0;
}
.community-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.community-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    min-width: 200px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.whatsapp-button { background-color: #25d366; }
.telegram-button { background-color: #0088cc; }


/* --- MOBIELE WEERGAVE (SCHERMEN KLEINER DAN 768px) --- */
@media screen and (max-width: 768px) {
    .portfolio-header h1 {
        font-size: 26px;
    }
    .section-title {
        font-size: 22px;
    }

    /* --- TRANSFORMEER TABEL NAAR KAART-LIJST --- */
    .responsive-table thead {
        display: none !important;
    }
    .responsive-table tr {
        display: block !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
        padding: 15px !important;
        margin-bottom: 20px !important;
        background-color: #fff !important; /* Zorgt voor een witte achtergrond voor alle kaarten */
    }
    .responsive-table td {
        display: block !important;
        padding: 6px 0 !important;
        border: none !important;
        text-align: left !important;
    }

    /* Eerste cel wordt de titel van de kaart */
    .responsive-table td:first-child {
        font-weight: bold !important;
        font-size: 1.2em !important;
        color: #1a1a1a !important;
        margin-bottom: 8px !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid #eee !important;
    }
    
    /* Verberg het 'data-label' voor de titel */
    .responsive-table td:first-child::before {
        display: none !important;
    }

    /* Voeg het label toe voor alle andere cellen */
    .responsive-table td::before {
        content: attr(data-label) ": " !important;
        font-weight: 600 !important;
        color: #333 !important;
        display: inline-block !important;
        min-width: 120px !important;
    }
    
    /* --- SPECIALE REGELS VOOR KASPOSITIE OP MOBIEL --- */
    .responsive-table tr.cash-position {
        background-color: #fafafa !important;
    }
    .responsive-table tr.cash-position td[data-label="Aankoopkoers"],
    .responsive-table tr.cash-position td[data-label="Huidige Koers"],
    .responsive-table tr.cash-position td[data-label="Rendement"] {
        display: none !important; /* Verberg de overbodige velden */
    }
    .responsive-table tr.cash-position td[data-label="Weging"] {
        border-bottom: none !important; /* Verwijder de lijn onder de titel als er maar 1 item is */
    }
}