
    /* Theme Alignment */
    body {
        background-color: transparent !important;
        margin: 0;
        padding: 5px;
        font-family: Arial, Helvetica, sans-serif;
    }

    /* Hyperlink Styling - Exact Match with Footer Theme */
    /* Humne direct 'a' tag ko target kiya hai taaki Repeater ke links affect hon */
    a {
        display: block;
        padding: 10px 15px;
        margin-bottom: 8px;
        color: #AA5E20 !important; /* Brown color as per logo */
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid rgba(170, 94, 32, 0.1);
        transition: all 0.3s ease;
        line-height: 1.5;
    }

  
 a::before {
        content: "\00BB"; 
    margin-right: 12px;
    color: #ffc107;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
}

    /* Hover State */
    a:hover {
        color: #000 !important;
        background-color: rgba(255, 193, 7, 0.1); /* Light yellow highlight */
        padding-left: 20px;
        border-bottom: 1px solid #ffc107;
    }

    /* Dark Mode Compatibility */
    [data-theme="dark"] a {
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
