/* ===== Algemene pagina instellingen ===== */
html, body {
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-y: scroll;
}

/* ===== Profiel container ===== */
.profile-container {
    max-width: 900px;
    margin: 140px auto 60px auto; /* extra marge zodat navbar niet overlapt */
    padding: 30px;
    background: #111;
    border-radius: 12px;
    border: 1px solid #76ff03;
    box-shadow: 0 0 25px rgba(118, 255, 3, 0.3);
}

/* ===== Titel "Mijn Profiel" ===== */
.profile-container h2 {
    text-align: center;
    font-size: 28px;
    color: #76ff03;
    margin-bottom: 25px;
}

/* ===== Basis profiel info ===== */
.profile-info {
    margin-bottom: 25px;
    padding: 15px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2e2e2e;
}

.profile-info p {
    font-size: 16px;
    margin: 8px 0;
    color: #ccc;
}

.profile-info p strong {
    color: #76ff03;
}

/* ===== Sectietitels (Mijn Producten, Mijn Biedingen, Mijn Likes) ===== */
.profile-container h3 {
    margin: 20px 0 15px;
    font-size: 20px;
    color: #76ff03;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

/* ===== Advertentie container ===== */
.profieladvertentie {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    max-height: 400px;
    overflow-y: auto;
}

/* ===== Kaartjes (producten, biedingen, likes) ===== */
.advertentiekaart {
    background: #181818;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.advertentiekaart:hover {
    transform: translateY(-3px);
    background-color: #202020;
}

.advertentiekaart h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.advertentiekaart h4 a {
    color: #76ff03;
    text-decoration: none;
}

.advertentiekaart h4 a:hover {
    text-decoration: underline;
}

.advertentiekaart p {
    margin: 5px 0;
    font-size: 14px;
    color: #bbb;
}

/* ===== Knoppen ===== */
.verwijder-knop {
    display: block;
    width: 100%;
    background-color: #76ff03;
    color: #111;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.2s ease;
    text-align: center;
}

.verwijder-knop:hover {
    background-color: #64dd02;
    transform: scale(1.02);
}
