    :root {
        --container-bg-primary: #202020;
        --container-bg-flow: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
        --container-bg-secondary: #2d2d2d;
        --container-bg-tertiary: #3d3d3d;
        --text-color-primary: #e0e0e0;
        --accent-color: #B28427;
        
        /* Log status colors */
        --color-success: #2ecc71;
        --color-error: #e74c3c;
        --color-highlight: #f1c40f;
        
        /* Log entry backgrounds */
        --log-bg-header: rgba(255, 255, 255, 0.1);
        --log-bg-hover: rgba(255, 255, 255, 0.05);
        --log-bg-hover-darker: rgba(255, 255, 255, 0.2);
        
        /* Transaction styling colors */
        --transaction-header-bg: var(--container-bg-tertiary);
        --transaction-row-border: 1px solid var(--container-bg-tertiary);
        --transaction-row-odd-bg: var(--container-bg-secondary);
        --transaction-row-even-bg: #333333;
        --transaction-row-hover-bg: #3a3a3a;
    }
    
    .back-button {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        background: var(--container-bg-tertiary);
        color: var(--text-color-primary);
        text-decoration: none;
        border-radius: 4px;
        margin-bottom: 10px;
        transition: background 0.3s;
    }
    .back-button:hover {
        background: #4d4d4d;
    }
    .back-button:before {
        content: "\2190";
        margin-right: 5px;
    }
    .main-container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 5px;
        background: var(--container-bg-primary);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        color: var(--text-color-primary);
        box-sizing: border-box;
    }
    .account-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        background: var(--container-bg-primary);
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        color: var(--text-color-primary);
    }
   
    .tekstheader {
        font-size: 16px;
        font-weight: bold;
        color: var(--text-color-primary);
        margin-bottom: 10px;
        display: block;
    }
        .tabs {
            display: flex;
            flex-wrap: nowrap; /* Prevent wrapping to new line */
            margin-bottom: 20px;
            overflow-x: auto; /* Allow horizontal scrolling if needed */
            padding-bottom: 5px; /* Space for potential scrollbar */
            width: 100%;
        }
        .tab {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 5px;
            padding: 10px 5px;
            text-decoration: none;
            flex: 1 0 auto; /* All tabs take equal width */
            text-align: center;
            transition: background 0.3s;
            white-space: nowrap; /* Prevent text wrapping */
            min-width: 0; /* Allow shrinking below content size */
        }
        .tab:hover {
            background:  rgba(255, 255, 255, 0.2);
        }
        .tab.active {
            background:  rgba(255, 255, 255, 0.2);
        }
        
        
        /*/ Tab Container met links zoals in object status / Obay /*/
        .tab-container {
                display: flex;
                overflow-x: auto;
                margin-bottom: 15px;
                border-bottom: 1px solid #444;
              }
              .tab-button {
                padding: 10px 15px;
                background: none;
                border: none;
                color: #ccc;
                cursor: pointer;
                font-size: 11px;
                white-space: nowrap;
                transition: all 0.3s;
              }
              .tab-button:hover, .tab-button.active {
                color: #ffd700;
                border-bottom: 3px solid #ffd700;
              }
              
    .errorbold {
        color: #e74c3c;
        font-weight: bold;
        padding: 8px 10px;
        background-color: rgba(231, 76, 60, 0.1);
        border-radius: 5px;
        display: block;
        margin: 8px 0;
    }
    .nav-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    .nav-card {
        background: var(--container-bg-flow);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        width: 100%;
        display: flex;
        text-decoration: none;
    }
    .nav-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        background: var(--container-bg-tertiary);
    }
    .nav-card-icon {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-card-content {
        padding: 10px;
        flex-grow: 1;
    }
    .nav-card-title {
        font-weight: bold;
        font-size: 13px;
        margin-bottom: 5px;
        color: #fff;
    }
    .nav-card-desc {
        color: #aaa;
        font-size: 11px;
    }
    .form-section {
        margin-bottom: 15px;
        background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
        border-radius: 8px;
        padding: 12px;
    }
    .form-section h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 16px;
        border-bottom: 1px solid #444;
        padding-bottom: 8px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-control {
        width: 100%;
        height: 25px;
        padding: 8px 10px;
        border: 1px solid #444;
        border-radius: 5px;
        background: #333;
        color: #fff;
    }
    
    /* Fix for select elements in Chrome */
    select.form-control {
        height: auto;
        padding: 4px 8px;
        line-height: 1.2;
        appearance: menulist;
        -webkit-appearance: menulist;
    }
    .btn {
        display: inline-block;
            padding: 10px 24px;
            margin: 5px;
            background: linear-gradient(rgb(68, 68, 68), rgb(45, 45, 45)) repeat scroll 0% 0% rgb(51, 51, 51);
            color: white;
            border: 1px solid rgb(17, 17, 17);
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-weight: bold;
    }
    .btn.small {
        display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: linear-gradient(rgb(68, 68, 68), rgb(45, 45, 45)) repeat scroll 0% 0% rgb(51, 51, 51);
            color: white;
            border: 1px solid rgb(17, 17, 17);
            border-radius: 6px;
            font-size: 10px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-weight: bold;
    }
    .btn.med {
        display: inline-block;
            padding: 9px 22px;
            margin: 5px;
            background: linear-gradient(rgb(68, 68, 68), rgb(45, 45, 45)) repeat scroll 0% 0% rgb(51, 51, 51);
            color: white;
            border: 1px solid rgb(17, 17, 17);
            border-radius: 6px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            font-weight: bold;
    }
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .form-actions {
        margin-top: 15px;
        text-align: center;
    }
    .pagination {
        display: flex;
        justify-content: center;
        margin: 15px 0;
        gap: 5px;
      }
      
      .pagination a {
        display: inline-block;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        text-decoration: none;
        color: #fff;
      }
      
      .pagination a.active {
        background: rgba(255, 255, 255, 0.3);
      }
      
      .pagination a:hover {
        background: rgba(255, 255, 255, 0.2);
      }
      
      .pagination a.pagination-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 8px;
        font-size: 12px;
      }
      
      .pagination a.pagination-nav i {
        font-style: normal;
      }
      
      .pagination a.pagination-nav i.fa-chevron-left:before {
        content: "\00AB"; /* HTML entity for « (left-pointing double angle quotation mark) */
      }
      
      .pagination a.pagination-nav i.fa-chevron-right:before {
        content: "\00BB"; /* HTML entity for » (right-pointing double angle quotation mark) */
      }
    /* Custom radio button styling */
    .poll-radio {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #777;
        border-radius: 50%;
        outline: none;
        margin-right: 5px;
        position: relative;
    }
    .poll-radio:checked {
        border-color: var(--accent-color);
    }
    .poll-radio:checked::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent-color);
    }
    
    /* Custom radio button styling for reward cards */
    .reward-radio {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #777;
        border-radius: 50%;
        outline: none;
        position: absolute;
        top: 5px;
        left: 5px;
        margin: 0;
        cursor: pointer;
    }
    .reward-radio:checked {
        border-color: var(--accent-color);
    }
    .reward-radio:checked::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent-color);
    }
    
    /* User avatar styling */
    .user-avatar {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #333;
    }
    
    /* Log Components */
    .log-header {
        display: flex;
        justify-content: space-between;
        padding: 6px 8px;
        background: var(--log-bg-header);
        border-radius: 4px;
        margin-bottom: 6px;
        font-weight: bold;
        font-size: 1em;
    }
    
    /* Common log entry styles */
    .log-entry, .kill-entry, .transaction-entry, .protection-entry, 
    .hiding-entry, .promotion-entry, .player-hand, .bet-entry, .map-entry, .war-entry {
        display: flex;
        justify-content: space-between;
        padding: 4px 8px;
        margin-bottom: 3px;
        border-radius: 4px;
        transition: background 0.2s;
        font-size: 1em;
    }
    
    /* Hover effect for entries */
    .log-entry:hover, .kill-entry:hover, .transaction-entry:hover, 
    .protection-entry:hover, .hiding-entry:hover, .promotion-entry:hover, 
    .player-hand:hover, .bet-entry:hover, .map-entry:hover, .war-entry:hover {
        background: var(--log-bg-hover);
    }
    
    /* Entry with pointer cursor */
    .log-entry[onclick], .kill-entry[onclick], .map-entry[onclick] {
        cursor: pointer;
    }
    
    /* Common log item styles */
    .log-item {
        padding: 0 3px;
    }
    
    /* Common date column */
    .log-item.date, .kill-date, .transaction-date, 
    .protection-date, .hiding-date, .promotion-date, .war-date {
        width: 140px;
        text-align: center;
        margin-right: 10px;
    }
    
    /* Player name column */
    .log-item.player, .player-name {
        flex-grow: 1;
    }
    
    /* Amount column */
    .log-item.amount {
        width: 120px;
        text-align: center;
    }
    
    /* Result column */
    .log-item.result {
        width: 80px;
        text-align: center;
    }
    
    /* Index number column */
    .log-item.index {
        width: 30px;
        text-align: center;
    }
    
    /* Empty log message */
    .log-empty {
        text-align: center;
        padding: 15px;
        font-weight: bold;
    }
    
    /* Status colors for text */
    .text-success {
        color: var(--color-success);
        font-weight: bold;
    }
    
    .text-error {
        color: var(--color-error);
        font-weight: bold;
    }
    
    /* Error message styling */
    .error-message {
        background-color: rgba(231, 76, 60, 0.1);
        border-left: 4px solid var(--color-error);
        color: var(--text-color-primary);
        padding: 10px 15px;
        margin: 10px 0;
        border-radius: 4px;
        font-weight: bold;
    }
    
    /* Success message styling */
    .result-message.success {
        background-color: rgba(46, 204, 113, 0.1);
        border-left: 4px solid var(--color-success);
        color: var(--text-color-primary);
        padding: 10px 15px;
        margin: 10px 0;
        border-radius: 4px;
        font-weight: bold;
    }
    
    .text-highlight {
        color: var(--color-highlight);
        font-weight: bold;
    }
    
    /* Common details containers */
    .kill-details, .transaction-details, .protection-details, 
    .hiding-details, .promotion-details, .war-details {
        flex-grow: 1;
    }
    
    /* Button link for log views */
    .button-link {
        display: inline-block;
        padding: 5px 10px;
        background: var(--log-bg-header);
        border-radius: 4px;
        text-decoration: none;
        color: #fff;
        transition: background 0.2s;
    }
    
    .button-link:hover {
        background: var(--log-bg-hover-darker);
    }
    
    /* Icon styling */
    .icon {
        font-size: 18px;
        display: inline-block;
        text-align: center;
    }
    .icon-warning {
        color: #ffc107; /* Yellow color for warning icon */
    }
    .icon-success {
        color: #28a745; /* Green color for success icon */
    }
    .icon-danger {
        color: #dc3545; /* Red color for danger/error icon */
    }
    .icon-primary {
        color: #007bff; /* Blue color for info icon */
    }
    .icon-lg {
        font-size: 62px;
    }
    .icon-md {
        font-size: 20px;
    }
    .icon-sm {
        font-size: 16px;
    }
    
    /* Clickable log entries */
    .log-entry {
        cursor: pointer;
        position: relative;
    }
    .log-entry:hover {
        background: var(--log-bg-hover);
    }
    .log-entry .icon, 
    .log-entry a {
        position: relative;
        z-index: 2; /* Keep icons and links above the clickable area */
    }
    
    /* Transaction History Styling */
    .transactions-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 15px;
    }
    
    .transactions-header {
        display: flex;
        background: var(--transaction-header-bg);
        padding: 12px 15px;
        font-weight: bold;
        color: var(--text-color-primary);
    }
    
    .transaction-row {
        display: flex;
        padding: 12px 15px;
        align-items: center;
        border-bottom: var(--transaction-row-border);
        transition: background 0.2s;
    }
    
    .transaction-row:hover {
        background: var(--transaction-row-hover-bg);
        cursor: pointer;
    }
    
    .transaction-row-odd {
        background: var(--transaction-row-odd-bg);
    }
    
    .transaction-row-even {
        background: var(--transaction-row-even-bg);
    }
    
    .transaction-column {
        padding: 0 10px;
    }
    
    
    
    /* Styling for checkboxes */
    input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 3px;
        background-color: rgba(255,255,255,0.1);
        border: 1px solid #444;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
      }
      
      input[type="checkbox"]:checked {
        background-color: #3498db;
        border-color: #2980b9;
      }
      
      input[type="checkbox"]:checked:after {
        content: "\2713"; /* Unicode checkmark symbol */
        font-size: 12px;
        color: white;
        position: absolute;
        top: 1px;
        left: 3px;
      }
      
      input[type="checkbox"]:hover {
        background-color: rgba(255,255,255,0.2);
      }
      
      /* Custom dropdown styling */
      .select-styling {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--container-bg-tertiary, #333) !important;
        color: var(--text-color-primary, #fff) !important;
        border: 1px solid #444 !important;
        border-radius: 5px !important;
        padding: 8px 12px !important;
        background-repeat: no-repeat;
        background-position: right 10px center;
        cursor: pointer;
      }
      
      /* This helps with some browsers */
      select option {
        padding: 8px !important;
        background-color: #333 !important;
        color: white !important;
        border: none !important;
        box-shadow: none !important;
      }
      
      /* General reset for select elements */
      select {
        background-color: #333 !important;
        border-color: #444 !important;
        outline: none !important;
      }
      
      /* Some browsers need this */
      select::-ms-expand {
        display: none;
      }
    
    /* Modern Scrollbar Styling */
    /* For WebKit browsers (Chrome, Safari, newer versions of Opera) */
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--container-bg-primary);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--container-bg-tertiary);
        border-radius: 3px;
        transition: background 0.2s ease;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-color);
    }
    
    /* For Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--container-bg-tertiary) var(--container-bg-primary);
    }
    
    /* For Edge and Internet Explorer */
    body {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: thin;     /* Firefox */
    }
    
    
    /*/ Header image for most pages /*/
    .top-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px;
        width: 100%;
    }
    .top-header img {
        width: 100%;
        max-width: 600px;
        border-radius: 8px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }
    
    @media (min-width: 1100px) {
        .top-header img {
            max-width: 700px;
         }
    }
    
.intro-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--container-bg-tertiary);
}
        
    @media (max-width: 850px) {
        .nav-card {
            flex: 1 0 100%;
            max-width: 100%;
        }
        
        .transactions-container {
            overflow-x: auto;
        }
        
        .transactions-header, 
        .transaction-row {
            min-width: 600px;
        }
        
        p {
            font-size: 9px;
          }
         p.intro-text {
           font-size: 9px;
         }
        h2 {
            font-size: 13px;
        }
         h3 {
            font-size: 13px;
          }
         .intro-title {
           font-size: 13px;
         }
         
         .nav-card-title {
            font-weight: bold;
            font-size: 10px;
            margin-bottom: 5px;
            color: #fff;
        }
        .nav-card-desc {
            color: #aaa;
            font-size: 7px;
        }
            
        .transaction-row {
             font-size: 9px;
        }
        .achievement-name {
            font-size: 9px;
          }
          
     
          
          
     }
    

/* =====================================================================================
   Topbalk (topbalk3.php) - voorheen inline in de <head> van elke pagina.
   topbalk3.php zorgt dat dit bestand altijd geladen is (via $PageCss of anders zelf).
   ===================================================================================== */
.topbar-container-topbalk {
    background-color: #202020;
    padding: 5px 8px;
    border-radius: 4px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.user-info-row-topbalk {
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 5px;
}
.stats-row-topbalk {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; /* Space between stats group and avatar */
    align-items: center;
    padding: 0;
    width: 100%;
    overflow: visible; /* Changed to visible so avatar container isn't cut off */
}
.stat-item-topbalk {
    display: flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    font-size: 1.05em;
    text-wrap: nowrap;
}
.stat-item-topbalk:hover {
    background-color: #303030;
}
.stat-item-topbalk img {
    margin-right: 5px;
    height: 14px;
    width: 14px;
}
.notification-row-topbalk {
    padding: 2px 0;
    text-align: center;
    font-size: 1em;
}
.progress-container-topbalk {
    background-color: #303030;
    border-radius: 8px;
    height: 8px;
    width: 100%;
    margin: 5px 0;
}
.progress-bar-topbalk {
    background-color: #b8a900; /* Changed to dark yellow */
    height: 8px;
    border-radius: 8px;
    transition: width 0.3s ease;
}
.health-bar-topbalk {
    background-color: #0d6e2a; /* Green for health */
    height: 8px;
    border-radius: 8px;
    transition: width 0.3s ease;
}
.security-bar-topbalk {
    background-color: #ffffff; /* White for security */
    height: 8px;
    border-radius: 8px;
    transition: width 0.3s ease;
}
.avatar-container-topbalk {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent shrinking */
    margin-left: auto; /* Push to the right */
}
.avatar-img-topbalk {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #0d6e2a; /* Changed to match progress bar */
    margin-right: 5px;
}
.player-name-topbalk {
    font-weight: bold;
    color: #fff;
    font-size: 1.1em;
    margin-right: 5px;
}
.avatar-dropdown-topbalk {
    display: none;
    position: absolute;
    background-color: #252525;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    right: 0;
    top: 35px;
}
.avatar-dropdown-topbalk a {
    color: white;
    padding: 6px 10px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #303030;
    font-size: 0.9em;
}
.avatar-dropdown-topbalk a:last-child {
    border-bottom: none;
}
.avatar-dropdown-topbalk a:hover {
    background-color: #303030;
}
.show-dropdown-topbalk {
    display: block;
}
.progress-stats-topbalk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}
.progress-text-topbalk {
    font-size: 0.9em;
    margin-right: 5px;
}
.progress-wrapper-topbalk {
    flex: 1;
    margin-right: 5px;
}
.health-wrapper-topbalk {
    flex: 1;
}
.health-text-topbalk {
    font-size: 0.9em;
    margin-right: 5px;
}
.security-wrapper-topbalk {
    flex: 1;
}
.security-text-topbalk {
    font-size: 0.9em;
    margin-right: 5px;
    margin-left: 5px;
}
.clickable-progress {
    cursor: pointer;
}
.stats-group-topbalk {
    display: flex;
    flex-wrap: nowrap;
    width: max-content; /* Allow the container to expand as needed */
    overflow-x: auto; /* Enable horizontal scrolling */
    margin-right: 10px; /* Add space between stats and avatar */
    flex: 1; /* Take available space but allow avatar to have its natural width */
}

/* Poker-notificatie (topbalk3.php) */
/* Poker notification style */
.poker-notification-row {
    padding: 6px 10px;
    margin: 5px 0;
    text-align: center;
    font-size: 1em;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(21,101,192,0.3) 20%, rgba(21,101,192,0.3) 80%, rgba(0,0,0,0) 100%);
    border-radius: 4px;
    position: relative;
    animation: pulse-background 3s infinite alternate;
    transition: all 0.3s ease;
}

.poker-notification-row a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poker-notification-row:hover {
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(21,101,192,0.5) 20%, rgba(21,101,192,0.5) 80%, rgba(0,0,0,0) 100%);
}

.poker-notification-row img {
    margin-right: 8px;
    height: 18px;
}

@keyframes pulse-background {
    0% {
        box-shadow: 0 0 5px rgba(21,101,192,0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(21,101,192,0.6);
    }
}

/* Belcredits-notificatie (topbalk3.php) */
/* Belcredits notification style */
.belcredits-notification-row {
padding: 6px 10px;
margin: 5px 0;
text-align: center;
font-size: 1em;
background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(183,142,0,0.3) 20%, rgba(183,142,0,0.3) 80%, rgba(0,0,0,0) 100%);
border-radius: 4px;
position: relative;
animation: pulse-belcredits-background 3s infinite alternate;
transition: all 0.3s ease;
}

.belcredits-notification-row a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
}

.belcredits-notification-row:hover {
background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(183,142,0,0.5) 20%, rgba(183,142,0,0.5) 80%, rgba(0,0,0,0) 100%);
}

.belcredits-notification-row img {
margin-right: 8px;
height: 18px;
}

@keyframes pulse-belcredits-background {
0% {
        box-shadow: 0 0 5px rgba(183,142,0,0.3);
}
100% {
        box-shadow: 0 0 15px rgba(183,142,0,0.6);
}
}

/* Event-notificatie (topbalk3.php) - zelfde opzet als de poker-notificatie, oranje */
.event-notification-row {
    padding: 6px 10px;
    margin: 5px 0;
    text-align: center;
    font-size: 1em;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,69,0,0.3) 20%, rgba(255,69,0,0.3) 80%, rgba(0,0,0,0) 100%);
    border-radius: 4px;
    position: relative;
    animation: pulse-event-notification 3s infinite alternate;
    transition: all 0.3s ease;
}
.event-notification-row a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-notification-row:hover {
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,69,0,0.5) 20%, rgba(255,69,0,0.5) 80%, rgba(0,0,0,0) 100%);
}
.event-notification-row .event-icon {
    margin-right: 8px;
    font-size: 1.2em;
}
@keyframes pulse-event-notification {
    0%   { box-shadow: 0 0 5px rgba(255,69,0,0.3); }
    100% { box-shadow: 0 0 15px rgba(255,69,0,0.6); }
}

